// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; /** */ export class VerifyCaptchaResponseBodyResult extends $dara.Model { /** * @example * true */ verifyResult?: boolean; static names(): { [key: string]: string } { return { verifyResult: 'VerifyResult', }; } static types(): { [key: string]: any } { return { verifyResult: 'boolean', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export class VerifyCaptchaResponseBody extends $dara.Model { /** * @example * Success */ code?: string; /** * @example * success */ message?: string; /** * @remarks * Id of the request * * @example * 95784F***D39FDC5 */ requestId?: string; result?: VerifyCaptchaResponseBodyResult; /** * @example * true */ success?: boolean; static names(): { [key: string]: string } { return { code: 'Code', message: 'Message', requestId: 'RequestId', result: 'Result', success: 'Success', }; } static types(): { [key: string]: any } { return { code: 'string', message: 'string', requestId: 'string', result: VerifyCaptchaResponseBodyResult, success: 'boolean', }; } validate() { if(this.result && typeof (this.result as any).validate === 'function') { (this.result as any).validate(); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }