// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DeleteDomainCertificateRequest extends $dara.Model { /** * @remarks * The ID of the SSL certificate that you want to delete. The ID is automatically generated by the system and globally unique. * * This parameter is required. * * @example * c621720d1eb34843822b7fb5148e6926 */ certificateId?: string; /** * @remarks * The custom domain name. * * This parameter is required. * * @example * api.demo.com */ domainName?: string; /** * @remarks * The ID of the API group. This ID is generated by the system and globally unique. * * This parameter is required. * * @example * 927d50c0f2e54b359919923d908bb015 */ groupId?: string; securityToken?: string; static names(): { [key: string]: string } { return { certificateId: 'CertificateId', domainName: 'DomainName', groupId: 'GroupId', securityToken: 'SecurityToken', }; } static types(): { [key: string]: any } { return { certificateId: 'string', domainName: 'string', groupId: 'string', securityToken: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }