// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DeleteLiveTranscodeTemplateRequest extends $dara.Model { /** * @remarks * The template ID. To obtain the template ID, log on to the [Intelligent Media Services (IMS) console](https://ice.console.aliyun.com/summary), choose Real-time Media Processing > Template Management, and then click the Transcoding tab. Alternatively, find the ID from the response parameters of the [CreateLiveTranscodeTemplate](https://help.aliyun.com/document_detail/449217.html) operation. * * This parameter is required. * * @example * ****d80e4e4044975745c14b**** */ templateId?: string; static names(): { [key: string]: string } { return { templateId: 'TemplateId', }; } static types(): { [key: string]: any } { return { templateId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }