/** * 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 model that carries out result of attempt to start verification. */ export declare class StartVerificationResult { /** * Gets or sets the data that required for verification method as explained in Message />. */ 'data'?: object; /** * Gets or sets the message that explains how to verify this website with specified method. */ 'message'?: string; /** * Gets or sets the verification status of website. */ 'verifyOwnershipResult'?: StartVerificationResult.VerifyOwnershipResultEnum; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace StartVerificationResult { enum VerifyOwnershipResultEnum { Verified, NotVerified, VerificationLimitExceed } }