import * as $dara from '@darabonba/typescript'; export declare class ListDNAFilesResponseBodyFileListInputFile extends $dara.Model { /** * @remarks * The name of the OSS bucket in which the input file is stored. * * @example * example-bucket */ bucket?: string; /** * @remarks * The OSS region in which the input file resides. * * @example * oss-cn-beijing */ location?: string; /** * @remarks * The name of the OSS object that is used as the input file. * * @example * example-****.mp4 */ object?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListDNAFilesResponseBodyFileList extends $dara.Model { /** * @remarks * The Object Storage Service (OSS) information about the input file. */ inputFile?: ListDNAFilesResponseBodyFileListInputFile; /** * @remarks * The primary key of the file. * * @example * ae0fd49c0840e14daf0d66a75b83**** */ primaryKey?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListDNAFilesResponseBody extends $dara.Model { /** * @remarks * The queried files. */ fileList?: ListDNAFilesResponseBodyFileList[]; /** * @remarks * A pagination token. It can be used in the next request to retrieve a new page of results. * * @example * ae0fd49c0840e14daf0d66a75b83**** */ nextPageToken?: string; /** * @remarks * The request ID. * * @example * 2AE89FA5-E620-56C7-9B80-75D09757385A */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }