import * as $dara from '@darabonba/typescript'; export declare class BindMFADeviceRequest extends $dara.Model { /** * @remarks * The first authentication code. * * @example * 11**** */ authenticationCode1?: string; /** * @remarks * The second authentication code. * * @example * 33**** */ authenticationCode2?: string; /** * @remarks * The serial number of the MFA device. * * @example * acs:ram::123456789012****:mfa/device002 */ serialNumber?: string; /** * @remarks * The name of the RAM user. * * @example * zhangq**** */ userName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }