import * as $dara from '@darabonba/typescript'; export declare class ListLiveRecordTemplatesResponseBodyRecordTemplateListRecordFormatList extends $dara.Model { /** * @remarks * The duration of the recording cycle, in seconds. * * @example * 21600 */ cycleDuration?: number; /** * @remarks * The recording file format. * * @example * m3u8 */ format?: string; /** * @remarks * The object prefix for the recording file stored in Object Storage Service (OSS). * * @example * record/{JobId}/{Sequence}_{EscapedStartTime}_{EscapedEndTime} */ ossObjectPrefix?: string; /** * @remarks * The duration of each slice, in seconds. * * @example * 30 */ sliceDuration?: number; /** * @remarks * The object prefix for the Transport Stream (TS) slice. * * @example * record/{JobId}/{UnixTimestamp}_{Sequence} */ sliceOssObjectPrefix?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListLiveRecordTemplatesResponseBodyRecordTemplateList extends $dara.Model { /** * @remarks * The time the template was created. * * Use the UTC time format: yyyy-MM-ddTHH:mmZ * * @example * 2022-07-20T02:48:58Z */ createTime?: string; /** * @remarks * The time the template was last modified. * * Use the UTC time format: yyyy-MM-ddTHH:mmZ * * @example * 2022-07-20T03:26:36Z */ lastModified?: string; /** * @remarks * The template name. * * @example * test template */ name?: string; /** * @remarks * The list of recording formats. */ recordFormatList?: ListLiveRecordTemplatesResponseBodyRecordTemplateListRecordFormatList[]; /** * @remarks * The template ID. * * @example * 69e1f9fe-1e97-11ed-ba64-0c42a1b73d66 */ templateId?: string; /** * @remarks * The template type. * * @example * custom */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListLiveRecordTemplatesResponseBody extends $dara.Model { /** * @remarks * The page number. * * @example * 1 */ pageNo?: number; /** * @remarks * The number of templates per page. * * @example * 10 */ pageSize?: number; /** * @remarks * The list of recording templates. */ recordTemplateList?: ListLiveRecordTemplatesResponseBodyRecordTemplateList[]; /** * @remarks * The request ID. * * @example * BEA98A0C-7870-15FE-B96F-8880BB600A2C */ requestId?: string; /** * @remarks * The sort order. By default, templates are sorted by creation time in descending order. * * @example * desc */ sortBy?: string; /** * @remarks * The total number of templates. * * @example * 5 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }