import * as $dara from '@darabonba/typescript'; export declare class ListSmartSysAvatarModelsResponseBodySmartSysAvatarModelList extends $dara.Model { /** * @remarks * The ID of the digital human. The ID is required to submit a separate digital human rendering job or use the digital human image in an intelligent timeline. * * @example * yunqiao */ avatarId?: string; /** * @remarks * The name of the digital human. */ avatarName?: string; /** * @remarks * The video bitrate. * * @example * 4000 */ bitrate?: number; /** * @remarks * The sample thumbnail URL of the digital human. * * @example * http://ice-pub-media.myalicdn.com/smart/avatarModel/coverDemo/yunqiao.mp4 */ coverUrl?: string; /** * @remarks * The video height. * * @example * 1920 */ height?: number; /** * @remarks * Indicates whether portrait mask rendering is supported. * * @example * false */ outputMask?: boolean; /** * @remarks * The sample video URL of the digital human. * * @example * http://ice-pub-media.myalicdn.com/smart/avatarModel/videoDemo/yunqiao.mp4 */ videoUrl?: string; /** * @remarks * The video width. * * @example * 1080 */ width?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListSmartSysAvatarModelsResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * ****63E8B7C7-4812-46AD-0FA56029AC86**** */ requestId?: string; /** * @remarks * The queried digital humans. */ smartSysAvatarModelList?: ListSmartSysAvatarModelsResponseBodySmartSysAvatarModelList[]; /** * @remarks * The total number of system digital human images returned. * * @example * 4 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }