import * as $dara from '@darabonba/typescript'; export declare class DeleteLiveRecordFilesResponseBodyDeleteFileInfoList extends $dara.Model { /** * @remarks * The code that identifies the result of the deletion. * * @example * OK */ code?: string; /** * @remarks * The result of deletion. * * @example * OK */ message?: string; /** * @remarks * The ID of the deleted recording file. * * @example * 13cbb83e-043c-4728-ac35-***** */ recordId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DeleteLiveRecordFilesResponseBody extends $dara.Model { /** * @remarks * The list of files deleted. */ deleteFileInfoList?: DeleteLiveRecordFilesResponseBodyDeleteFileInfoList[]; /** * @remarks * The description of the state returned. * * @example * OK */ message?: string; /** * @remarks * Id of the request * * @example * 13cbb83e-043c-4728-ac35-***** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }