import * as $dara from '@darabonba/typescript'; export declare class ListAvatarTrainingJobsResponseBodyDataAvatarTrainingJobList extends $dara.Model { /** * @remarks * The description of the digital human. */ avatarDescription?: string; /** * @remarks * The ID of the digital human. * * @example * Avatar-XXX */ avatarId?: string; /** * @remarks * The name of the digital human. */ avatarName?: string; /** * @remarks * The type of the digital human. * * @example * 2DAvatar */ avatarType?: string; /** * @remarks * * The time when the job was created. * * The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC. * * @example * 2020-12-23T13:33:40Z */ createTime?: string; /** * @remarks * * The time when the first training was initiated. * * The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC. * * @example * 2020-12-23T13:33:40Z */ firstTrainingTime?: string; /** * @remarks * The ID of the digital human training job. * * @example * *****aded114489ea02e0addf93***** */ jobId?: string; /** * @remarks * * The time when the last training was initiated. * * The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC. * * @example * 2020-12-23T13:33:40Z */ lastTrainingTime?: string; /** * @remarks * The status description. */ message?: string; /** * @remarks * The media asset ID of the portrait image. * * @example * *****aded114489ea02e0addf93***** */ portrait?: string; /** * @remarks * The state of the digital human training job. * * @example * Normal */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListAvatarTrainingJobsResponseBodyData extends $dara.Model { /** * @remarks * The list of digital human training jobs. */ avatarTrainingJobList?: ListAvatarTrainingJobsResponseBodyDataAvatarTrainingJobList[]; /** * @remarks * The total number of entries returned. * * @example * 3 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListAvatarTrainingJobsResponseBody extends $dara.Model { /** * @remarks * The data returned. */ data?: ListAvatarTrainingJobsResponseBodyData; /** * @remarks * The request ID. * * @example * ****63E8B7C7-4812-46AD-0FA56029AC86**** */ requestId?: string; /** * @remarks * Indicates whether the request was successful. Valid values: * * * true * * false * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }