import * as $dara from '@darabonba/typescript'; export declare class DeleteLiveSnapshotFilesResponseBodyDeleteFileResultList extends $dara.Model { /** * @remarks * The time when the file was created. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC. * * @example * 1660638613798 */ createTimestamp?: number; /** * @remarks * The result of deletion. A value of OK indicates that the file is deleted. Other values indicate that the file failed to be deleted. * * Valid values: * * * OK: The file was deleted. * * NotFound: The file was not found. * * @example * OK */ result?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DeleteLiveSnapshotFilesResponseBody extends $dara.Model { /** * @remarks * The list of deleted files. */ deleteFileResultList?: DeleteLiveSnapshotFilesResponseBodyDeleteFileResultList[]; /** * @remarks * The request ID. * * @example * ****2876-6263-4B75-8F2C-CD0F7FCF**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }