import * as $dara from '@darabonba/typescript'; export declare class UnbindVerificationRequest extends $dara.Model { /** * @remarks * The email address. * * > If you set `VerifyType` to `email`, you must specify this parameter. * * @example * username@example.com */ email?: string; /** * @remarks * The mobile phone number. * * > If you set `VerifyType` to `sms`, you must specify this parameter. * * @example * 86-13900001234 */ mobilePhone?: string; /** * @remarks * The logon name of the RAM user. * * @example * test@example.onaliyun.com */ userPrincipalName?: string; /** * @remarks * The multi-factor authentication (MFA) method. Valid values: * * - sms: mobile phone. * * - email: email. * * @example * sms */ verifyType?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }