import * as $dara from '@darabonba/typescript'; export declare class ListLiveSnapshotFilesResponseBodyFileList extends $dara.Model { /** * @remarks * The time when the template was created. * * @example * 2022-02-02T22:22:22Z */ createTime?: string; /** * @remarks * The creation timestamp that is used as an input parameter for a delete API operation. * * @example * 1619503516000 */ createTimestamp?: number; /** * @remarks * Specifies whether to overlay snapshots. * * @example * true */ isOverlay?: boolean; /** * @remarks * The OSS bucket. * * @example * testbucket */ ossBucket?: string; /** * @remarks * The Object Storage Service (OSS) domain name. * * @example * oss-cn-shanghai.aliyuncs.com */ ossEndpoint?: string; /** * @remarks * The location in which the OSS object is stored. */ ossObject?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListLiveSnapshotFilesResponseBody extends $dara.Model { /** * @remarks * The list of files. */ fileList?: ListLiveSnapshotFilesResponseBodyFileList[]; /** * @remarks * The start time of the next page. If no value is returned, the pagination ends. * * @example * 2022-02-02T22:22:22Z */ nextStartTime?: string; /** * @remarks * The request ID. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }