import * as $dara from '@darabonba/typescript'; export declare class EncryptResponseBody extends $dara.Model { /** * @remarks * The unique identifier of the certificate. * * @example * 1ef1da5f-38ed-69b3-****-037781890265 */ certIdentifier?: string; /** * @remarks * The encrypted data. The data is Base64-encoded. * * @example * ZOyIygCyaOW6Gj****MlNKiuyjfzw= */ ciphertextBlob?: string; /** * @remarks * The request ID. * * @example * 5979d897-d69f-4fc9-87dd-f3bb73c40b80 */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }