import * as $dara from '@darabonba/typescript'; export declare class CreateVirtualMFADeviceResponseBodyVirtualMFADevice extends $dara.Model { /** * @remarks * The key of the MFA device. * * @example * DSF98HAD982KJA9SDFNAS9D8FU839B8ADHBGS**** */ base32StringSeed?: string; /** * @remarks * The Base64-encoded QR code, in the PNG format. * * @example * YXNkZmFzZDlmeW5hc2Q5OGZoODd4bXJmcThhaGU5aSBmYXNkZiBzYWRmIGFGIDRxd2VjIGEgdHEz**** */ QRCodePNG?: string; /** * @remarks * The serial number of the MFA device. * * @example * acs:ram::123456789012****:mfa/device001 */ serialNumber?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateVirtualMFADeviceResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * 04F0F334-1335-436C-A1D7-6C044FE73368 */ requestId?: string; /** * @remarks * The information about the MFA device. */ virtualMFADevice?: CreateVirtualMFADeviceResponseBodyVirtualMFADevice; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }