import * as $dara from '@darabonba/typescript'; export declare class SearchMediaClipByFaceResponseBodyMediaClipListOccurrencesInfosTrackDataBoxPosition extends $dara.Model { /** * @remarks * The height of the rectangle frame. Unit: pixels. * * @example * 168 */ h?: number; /** * @remarks * The width of the rectangle frame. Unit: pixels. * * @example * 128 */ w?: number; /** * @remarks * The x-axis coordinate of the upper-left corner. Unit: pixels. * * @example * 517 */ x?: number; /** * @remarks * The y-axis coordinate of the upper-left corner. Unit: pixels. * * @example * 409 */ y?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SearchMediaClipByFaceResponseBodyMediaClipListOccurrencesInfosTrackData extends $dara.Model { /** * @remarks * The coordinates of the face. */ boxPosition?: SearchMediaClipByFaceResponseBodyMediaClipListOccurrencesInfosTrackDataBoxPosition; /** * @remarks * The timestamp when the face appears in the clip. Unit: seconds. The value is of the Float type. * * @example * 62.03302 */ timestamp?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SearchMediaClipByFaceResponseBodyMediaClipListOccurrencesInfos extends $dara.Model { /** * @remarks * The end time of the clip. Unit: seconds. The value is of the Float type. * * @example * 69.06635 */ endTime?: number; expression?: string; /** * @remarks * The start time of the clip. Unit: seconds. The value is of the Float type. * * @example * 61.066353 */ startTime?: number; /** * @remarks * The information about the face in the clip. */ trackData?: SearchMediaClipByFaceResponseBodyMediaClipListOccurrencesInfosTrackData[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SearchMediaClipByFaceResponseBodyMediaClipList extends $dara.Model { /** * @remarks * The type of the character. Valid values: celebrity sensitive politician custom unknown * * @example * celebrity */ category?: string; /** * @remarks * The ID of the entity, which is the same as the entity ID returned in tag analysis. * * @example * 1031025**** */ entityId?: string; /** * @remarks * The name of the entity. */ labelName?: string; /** * @remarks * The information about clips related to the face. */ occurrencesInfos?: SearchMediaClipByFaceResponseBodyMediaClipListOccurrencesInfos[]; /** * @remarks * The score of the clip. The value is of the Float type. The value is in the range of [0,1]. * * @example * 0.99041677 */ score?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SearchMediaClipByFaceResponseBody extends $dara.Model { /** * @remarks * The status code returned. * * @example * 200 */ code?: string; /** * @remarks * The media asset clips that meet the requirements. */ mediaClipList?: SearchMediaClipByFaceResponseBodyMediaClipList[]; /** * @remarks * The ID of the request. * * @example * E44FFACD-9E90-555A-A09A-6FD3B7335E39 */ requestId?: string; /** * @remarks * Indicates whether the request was successful. Valid values: true and false. * * @example * true */ success?: string; /** * @remarks * The total number of media asset clips that meet the conditions. * * @example * 5 */ total?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }