import * as $dara from '@darabonba/typescript'; export declare class ListLiveSnapshotTemplatesResponseBodyTemplateList extends $dara.Model { /** * @remarks * The time when the job was created. * * @example * 2022-07-20T02:48:58Z */ createTime?: string; /** * @remarks * The template ID. * * @example * ****a046-263c-3560-978a-fb287782**** */ templateId?: string; /** * @remarks * The template name. */ templateName?: string; /** * @remarks * The interval between two adjacent snapshots. Unit: seconds. * * @example * 10 */ timeInterval?: number; /** * @remarks * The type of the template. * * Valid values: * * * system * * custom * * @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 number of the returned page. * * @example * 1 */ pageNo?: number; /** * @remarks * The number of entries per page. * * @example * 10 */ pageSize?: number; /** * @remarks * The request ID. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; /** * @remarks * The sorting order of the results by creation time. * * @example * desc */ sortBy?: string; /** * @remarks * The list of the templates. */ templateList?: ListLiveSnapshotTemplatesResponseBodyTemplateList[]; /** * @remarks * The total number of entries returned. * * @example * 100 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }