// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DeleteSmsTemplateRequest extends $dara.Model { ownerId?: number; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * The code of the message template. * * You can log on to the [Alibaba Cloud SMS console](https://dysms.console.aliyun.com/dysms.htm) and obtain the message template code on the **Message Templates** tab. You can also obtain the message template code by calling the [AddSmsTemplate](https://help.aliyun.com/document_detail/121208.html) operation. * * This parameter is required. * * @example * SMS_152550**** */ templateCode?: string; static names(): { [key: string]: string } { return { ownerId: 'OwnerId', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', templateCode: 'TemplateCode', }; } static types(): { [key: string]: any } { return { ownerId: 'number', resourceOwnerAccount: 'string', resourceOwnerId: 'number', templateCode: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }