// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class CreateWHClientCertificateResponseBody extends $dara.Model { /** * @remarks * The certificate chain. * * @example * -----BEGIN CERTIFICATE-----\\n......\\n-----END CERTIFICATE-----\\n-----BEGIN CERTIFICATE-----\\n......\\n-----END CERTIFICATE-----\\n */ certificateChain?: string; /** * @remarks * The unique identifier of the client certificate. * * @example * 190ae6bb538d538c70c01f81dcf2**** */ identifier?: string; /** * @remarks * The content of the subordinate CA certificate. * * @example * -----BEGIN CERTIFICATE-----\\n......\\n-----END CERTIFICATE----- */ parentX509Certificate?: string; /** * @remarks * The request ID. This unique ID is generated by Alibaba Cloud for each request and can be used for troubleshooting. * * @example * 8C467B38-3910-447D-87BC-AC049166F216 */ requestId?: string; /** * @remarks * The content of the root CA certificate. * * @example * -----BEGIN CERTIFICATE-----\\n......\\n-----END CERTIFICATE----- */ rootX509Certificate?: string; /** * @remarks * The content of the client certificate. * * @example * -----BEGIN CERTIFICATE-----\\n......\\n-----END CERTIFICATE----- */ x509Certificate?: string; static names(): { [key: string]: string } { return { certificateChain: 'CertificateChain', identifier: 'Identifier', parentX509Certificate: 'ParentX509Certificate', requestId: 'RequestId', rootX509Certificate: 'RootX509Certificate', x509Certificate: 'X509Certificate', }; } static types(): { [key: string]: any } { return { certificateChain: 'string', identifier: 'string', parentX509Certificate: 'string', requestId: 'string', rootX509Certificate: 'string', x509Certificate: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }