import * as $dara from '@darabonba/typescript'; export declare class DeleteLiveSnapshotFilesResponseBodyDeleteFileResultList extends $dara.Model { /** * @remarks * The creation timestamp of the file. * * @example * 1660638613798 */ createTimestamp?: number; /** * @remarks * The deletion result. A value of `OK` indicates the operation succeeded. Other values indicate that it failed. * * @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 * An array of deletion results. */ deleteFileResultList?: DeleteLiveSnapshotFilesResponseBodyDeleteFileResultList[]; /** * @remarks * The ID of the request. * * @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; }); }