import * as $dara from '@darabonba/typescript'; export declare class SearchMediaByHybridResponseBodyMediaListClipInfo extends $dara.Model { /** * @remarks * The start time of the relevant clip. * * @example * 2 */ from?: number; /** * @remarks * The relevance score of the clip for the query. * * @example * 0.99 */ score?: number; /** * @remarks * The end time of the relevant clip. * * @example * 4 */ to?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SearchMediaByHybridResponseBodyMediaList extends $dara.Model { /** * @remarks * The information about the relevant clips. */ clipInfo?: SearchMediaByHybridResponseBodyMediaListClipInfo[]; /** * @remarks * The ID of the media asset. * * @example * a18936e0e28771edb59ae6f6f47a**** */ mediaId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SearchMediaByHybridResponseBody extends $dara.Model { /** * @remarks * The status code returned. * * @example * 200 */ code?: string; /** * @remarks * The media assets that match the search query. */ mediaList?: SearchMediaByHybridResponseBodyMediaList[]; /** * @remarks * The request ID. * * @example * ******3B-0E1A-586A-AC29-742247****** */ requestId?: string; /** * @remarks * Indicates whether the request was successful. Valid values: true and false. * * @example * true */ success?: string; /** * @remarks * The total number of media assets that match the search criteria. * * @example * 30 */ total?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }