import * as $dara from '@darabonba/typescript'; export declare class AddTemplateResponseBodyTemplate extends $dara.Model { /** * @remarks * The template configurations. * * @example * 参见Timeline模板Config文档 */ config?: string; /** * @remarks * The URL of the template thumbnail. * * @example * http://example-bucket.oss-cn-shanghai.aliyuncs.com/cover.jpg */ coverUrl?: string; /** * @remarks * The source from which the template was created. * * Valid values: * * * AliyunConsole * * WebSDK * * OpenAPI * * @example * OpenAPI */ createSource?: string; /** * @remarks * The source from which the template was modified. * * Valid values: * * * AliyunConsole * * WebSDK * * OpenAPI * * @example * OpenAPI */ modifiedSource?: string; /** * @remarks * The template name. * * @example * 视频添加水印模板 */ name?: string; /** * @remarks * The ID of the preview video. * * @example * ****01bf24bf41c78b2754cb3187**** */ previewMedia?: string; /** * @remarks * The template state. * * Valid values: * * * UploadFailed: Failed to upload the video. * * ProcessFailed: Failed to process the advanced template. * * Available: The template is available. * * Uploading: The video is being uploaded. * * Created: The template is created but not ready for use. * * Processing: The advanced template is being processed. * * @example * Available */ status?: string; /** * @remarks * The template ID. * * @example * ****01bf24bf41c78b2754cb3187**** */ templateId?: string; /** * @remarks * The template type. * * Valid values: * * * Timeline: regular template. * * VETemplate: advanced template. * * @example * Timeline */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class AddTemplateResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * ****2876-6263-4B75-8F2C-CD0F7FCF**** */ requestId?: string; /** * @remarks * The template information. */ template?: AddTemplateResponseBodyTemplate; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }