// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DecryptResponseBody extends $dara.Model { /** * @remarks * The unique identifier of the certificate. * * @example * 1ef1da5f-38ed-69b3-****-037781890265 */ certIdentifier?: string; /** * @remarks * The decrypted data. * * @example * VGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIHRoZSBsYXp5IGRvZy4 */ plaintext?: string; /** * @remarks * The request ID. * * @example * 5979d897-d69f-4fc9-87dd-f3bb73c40b80 */ requestId?: string; static names(): { [key: string]: string } { return { certIdentifier: 'CertIdentifier', plaintext: 'Plaintext', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { certIdentifier: 'string', plaintext: 'string', requestId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }