// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class SetDomainCertificateResponseBody extends $dara.Model { /** * @remarks * The ID of the request. * * @example * 6EF60BEC-0242-43AF-BB20-270359FB54A7 */ requestId?: string; static names(): { [key: string]: string } { return { requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { requestId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }