import * as $dara from '@darabonba/typescript'; export declare class ListCustomTemplatesResponseBodyCustomTemplateListFrontendHintTranscodeTemplateHint extends $dara.Model { bitrateControlType?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListCustomTemplatesResponseBodyCustomTemplateListFrontendHint extends $dara.Model { transcodeTemplateHint?: ListCustomTemplatesResponseBodyCustomTemplateListFrontendHintTranscodeTemplateHint; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListCustomTemplatesResponseBodyCustomTemplateList extends $dara.Model { /** * @remarks * The time when the template was created. * * @example * 2022-07-12T16:17:54Z */ createTime?: string; frontendHint?: ListCustomTemplatesResponseBodyCustomTemplateListFrontendHint; /** * @remarks * Indicates whether the template is the default template. * * Valid values: * * * true * * false * * @example * true */ isDefault?: boolean; /** * @remarks * The time when the template was last modified. * * @example * 2022-07-12T16:17:54Z */ modifiedTime?: string; /** * @remarks * The template state. * * Valid values: * * * Normal * * @example * Normal */ status?: string; /** * @remarks * The subtype ID of the template. * * @example * 2 */ subtype?: number; /** * @remarks * The subtype name of the template. * * @example * AudioTranscode */ subtypeName?: string; /** * @remarks * The template parameters. * * @example * {"Container":{"Format":"mp3"},"Audio":{"Codec":"mp3","Bitrate":"64","Samplerate":"22050","Channels":"2"}} */ 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 ListCustomTemplatesResponseBody extends $dara.Model { /** * @remarks * The queried templates. */ customTemplateList?: ListCustomTemplatesResponseBodyCustomTemplateList[]; /** * @remarks * The request ID. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; /** * @remarks * The total number of templates. * * @example * 20 */ total?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }