import * as $dara from '@darabonba/typescript'; export declare class ListLiveSnapshotTemplatesResponseBodyTemplateList extends $dara.Model { /** * @remarks * The time when the template was created. The time format is UTC. * * @example * 2022-07-20T02:48:58Z */ createTime?: string; /** * @remarks * The ID of the template. * * @example * ****a046-263c-3560-978a-fb287782**** */ templateId?: string; /** * @remarks * The name of the template. * * @example * Template 1 */ templateName?: string; /** * @remarks * The snapshot interval in seconds. * * @example * 10 */ timeInterval?: number; /** * @remarks * The type of the template. * * @example * custom */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListLiveSnapshotTemplatesResponseBody extends $dara.Model { /** * @remarks * The page number. * * @example * 1 */ pageNo?: number; /** * @remarks * The number of entries per page. * * @example * 10 */ pageSize?: number; /** * @remarks * The ID of the request. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; /** * @remarks * The sort order. * * @example * desc */ sortBy?: string; /** * @remarks * The list of templates. */ templateList?: ListLiveSnapshotTemplatesResponseBodyTemplateList[]; /** * @remarks * The total number of entries. * * @example * 100 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }