/** * Netsparker 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. */ /** * Represents a form authentication verification result. */ export declare class AuthVerificationApiResult { /** * Gets or sets the suggested logout keywords. */ 'keywords'?: Array; /** * Gets or sets the login image in base64 encoded format. */ 'loginImageBase64'?: string; /** * Gets or sets the login required URL. */ 'loginRequiredUrl'?: string; /** * Gets or sets the logout image in base64 encoded format. */ 'logoutImageBase64'?: 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; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace AuthVerificationApiResult { enum LogoutSignatureTypeEnum { None, RedirectBased, KeywordBased } }