import * as $dara from '@darabonba/typescript'; export declare class ListSmartSysAvatarModelsResponseBodySmartSysAvatarModelList extends $dara.Model { /** * @remarks * The digital avatar ID. Use this ID when you submit a rendering job or use the digital avatar in an intelligent timeline. * * @example * yunqiao */ avatarId?: string; /** * @remarks * The digital avatar name. * * @example * Yun Qiao */ avatarName?: string; /** * @remarks * The video bitrate. * * @example * 4000 */ bitrate?: number; /** * @remarks * The URL of the sample cover for the digital avatar. * * @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 URL of the sample video for the digital avatar. * * @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 * A list of system digital avatars. */ smartSysAvatarModelList?: ListSmartSysAvatarModelsResponseBodySmartSysAvatarModelList[]; /** * @remarks * The total number of system digital avatars. * * @example * 4 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }