import * as $dara from '@darabonba/typescript'; export declare class GetVerificationInfoResponseBodySecurityEmailDevice extends $dara.Model { /** * @remarks * The email address. * * @example * username@example.com */ email?: string; /** * @remarks * The status of the email. Valid values: * * - active: The email is activated. * * - pending: The email is pending for activation. * * @example * active */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetVerificationInfoResponseBodySecurityPhoneDevice extends $dara.Model { /** * @remarks * The international dialing code. * * @example * 86 */ areaCode?: string; /** * @remarks * The mobile phone number. * * @example * 13900001234 */ phoneNumber?: string; /** * @remarks * The status of the mobile phone. Valid values: * * - active: The mobile phone is activated. * * - pending: The mobile phone is pending for activation. * * @example * active */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetVerificationInfoResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * B182C041-8C64-5F2F-A07B-FC67FAF89CF9 */ requestId?: string; /** * @remarks * The information about the email. */ securityEmailDevice?: GetVerificationInfoResponseBodySecurityEmailDevice; /** * @remarks * The information about the mobile phone. */ securityPhoneDevice?: GetVerificationInfoResponseBodySecurityPhoneDevice; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }