import * as $dara from '@darabonba/typescript'; export declare class CreateCustomTemplateResponseBodyCustomTemplate extends $dara.Model { /** * @remarks * The time when the template was created. * * @example * 2022-04-19T02:04:31Z */ createTime?: string; /** * @remarks * Indicates whether the template is the default template. * * @example * true */ isDefault?: boolean; /** * @remarks * The time when the template was last modified. * * @example * 2022-04-19T02:04:31Z */ modifiedTime?: string; /** * @remarks * The template state. * * @example * Normal */ status?: string; /** * @remarks * The subtype name of the template. * * @example * Remux */ subtype?: string; /** * @remarks * The template configurations. * * @example * {"Container":{"Format":"flv"},"Video":{},"Audio":{}} */ templateConfig?: string; /** * @remarks * The template ID. * * @example * ****20b48fb04483915d4f2cd8ac**** */ templateId?: string; /** * @remarks * The template name. * * @example * test-template */ templateName?: string; /** * @remarks * The type ID of the template. * * @example * 1 */ type?: number; /** * @remarks * The type name of the template. * * @example * TranscodeTemplate */ typeName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateCustomTemplateResponseBody extends $dara.Model { /** * @remarks * The template information. */ customTemplate?: CreateCustomTemplateResponseBodyCustomTemplate; /** * @remarks * The request ID. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }