import * as $dara from '@darabonba/typescript'; export declare class GetTemplateParamsResponseBodyParamList extends $dara.Model { /** * @remarks * The original subtitle content. * * @example * Subtitle test */ content?: string; /** * @remarks * The thumbnail URL of the original material. */ coverUrl?: string; /** * @remarks * The height of the original material in the output video, in absolute pixel values. This value is returned only for standard templates created in the console. * * @example * 300 */ height?: number; /** * @remarks * The parameter name. * * @example * video1 */ key?: string; /** * @remarks * The URL of the original material. */ mediaUrl?: string; /** * @remarks * In-point of the original material segment relative to the timeline, in seconds. This value is returned only for standard templates created in the console. * * @example * 5.5 */ timelineIn?: number; /** * @remarks * Out-point of the original material segment relative to the timeline, in seconds. This value is returned only for standard templates created in the console. * * @example * 8.5 */ timelineOut?: number; /** * @remarks * The material type. * * Valid values: * * - Video * * - Text * * - Image * * @example * Image */ type?: string; /** * @remarks * The width of the original material in the output video, in absolute pixel values. This value is returned only for standard templates created in the console. * * @example * 300 */ width?: number; /** * @remarks * The horizontal distance of the original material relative to the top-left corner of the video, in absolute pixel values. This value is returned only for standard templates created in the console. * * @example * 100 */ x?: number; /** * @remarks * The vertical distance of the original material relative to the top-left corner of the video, in absolute pixel values. This value is returned only for standard templates created in the console. * * @example * 100 */ y?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetTemplateParamsResponseBody extends $dara.Model { /** * @remarks * The queried parameters. */ paramList?: GetTemplateParamsResponseBodyParamList[]; /** * @remarks * The request ID. * * @example * ****2876-6263-4B75-8F2C-CD0F7FCF**** */ requestId?: string; /** * @remarks * The template ID. * * @example * ******419c8741c1b4325f035b****** */ templateId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }