// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DeleteCertificateRequestRequest extends $dara.Model { /** * @remarks * The ID of the certificate application order that you want to delete. * * > After you call the [CreateCertificateForPackageRequest](https://help.aliyun.com/document_detail/455296.html), [CreateCertificateRequest](https://help.aliyun.com/document_detail/455292.html), or [CreateCertificateWithCsrRequest](https://help.aliyun.com/document_detail/455801.html) operation to submit a certificate application, you can obtain the ID of the certificate application order from the **OrderId** response parameter. You can also call the [ListUserCertificateOrder](https://help.aliyun.com/document_detail/455804.html) operation to obtain the order ID. * * This parameter is required. * * @example * 123451222 */ orderId?: number; static names(): { [key: string]: string } { return { orderId: 'OrderId', }; } static types(): { [key: string]: any } { return { orderId: 'number', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }