/** * 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'; /** * Represents a model that carries out result of attempt to start verification. */ export 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 = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "data", "baseName": "Data", "type": "object" }, { "name": "message", "baseName": "Message", "type": "string" }, { "name": "verifyOwnershipResult", "baseName": "VerifyOwnershipResult", "type": "StartVerificationResult.VerifyOwnershipResultEnum" } ]; static getAttributeTypeMap() { return StartVerificationResult.attributeTypeMap; } } export namespace StartVerificationResult { export enum VerifyOwnershipResultEnum { Verified = 'Verified', NotVerified = 'NotVerified', VerificationLimitExceed = 'VerificationLimitExceed' } }