netsparker-cloud
Version:
JavaScript client for consuming the Netsparker Cloud API.
69 lines (62 loc) • 1.91 kB
text/typescript
/**
* Invicti Enterprise API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: v1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { RequestFile } from './models';
export class AuthVerificationApiResult {
/**
* Gets or sets the suggested logout keywords.
*/
'keywords'?: Array<string>;
/**
* Gets or sets the login required URL.
*/
'loginRequiredUrl'?: string;
/**
* Gets or sets the type of the logout signature.
*/
'logoutSignatureType'?: AuthVerificationApiResult.LogoutSignatureTypeEnum;
/**
* Gets or sets the redirect location.
*/
'redirectLocation'?: string;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "keywords",
"baseName": "Keywords",
"type": "Array<string>"
},
{
"name": "loginRequiredUrl",
"baseName": "LoginRequiredUrl",
"type": "string"
},
{
"name": "logoutSignatureType",
"baseName": "LogoutSignatureType",
"type": "AuthVerificationApiResult.LogoutSignatureTypeEnum"
},
{
"name": "redirectLocation",
"baseName": "RedirectLocation",
"type": "string"
} ];
static getAttributeTypeMap() {
return AuthVerificationApiResult.attributeTypeMap;
}
}
export namespace AuthVerificationApiResult {
export enum LogoutSignatureTypeEnum {
None = <any> 'None',
RedirectBased = <any> 'RedirectBased',
KeywordBased = <any> 'KeywordBased'
}
}