import * as $dara from '@darabonba/typescript'; export declare class SubmitAvatarTrainingJobResponseBodyData extends $dara.Model { /** * @remarks * The ID of the digital human training job. * * @example * ****29faef8144638ba42eb8e037**** */ jobId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SubmitAvatarTrainingJobResponseBody extends $dara.Model { /** * @remarks * The data returned. */ data?: SubmitAvatarTrainingJobResponseBodyData; /** * @remarks * The request ID. * * @example * *****ACB-44F2-5F2D-88D7-1283E70***** */ requestId?: string; /** * @remarks * Indicates whether the request was successful. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }