import * as $dara from '@darabonba/typescript'; export declare class SearchMediaByMultimodalResponseBodyMediaListClipInfo extends $dara.Model { /** * @remarks * The start time of the clip. * * @example * 2 */ from?: number; /** * @remarks * The score. * * @example * 1.2 */ score?: number; /** * @remarks * The end time of the 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 SearchMediaByMultimodalResponseBodyMediaList extends $dara.Model { /** * @remarks * The information about the clip. */ clipInfo?: SearchMediaByMultimodalResponseBodyMediaListClipInfo[]; /** * @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 SearchMediaByMultimodalResponseBody extends $dara.Model { /** * @remarks * The status code returned. * * @example * 200 */ code?: string; /** * @remarks * The media assets that contain the specified content. */ mediaList?: SearchMediaByMultimodalResponseBodyMediaList[]; /** * @remarks * The ID of the request. * * @example * ****63E8B7C7-4812-46AD-0FA56029AC86**** */ requestId?: string; /** * @remarks * Indicates whether the request was successful. Valid values: true false * * @example * true */ success?: string; /** * @remarks * The total number of data records that meet the specified filter condition. * * @example * 20 */ total?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }