// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class SubmitAvatarTrainingJobResponseBodyData extends $dara.Model { /** * @remarks * The ID of the digital human training job. * * @example * ****29faef8144638ba42eb8e037**** */ jobId?: string; static names(): { [key: string]: string } { return { jobId: 'JobId', }; } static types(): { [key: string]: any } { return { jobId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } } export 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 } { return { data: 'Data', requestId: 'RequestId', success: 'Success', }; } static types(): { [key: string]: any } { return { data: SubmitAvatarTrainingJobResponseBodyData, requestId: 'string', success: 'boolean', }; } validate() { if(this.data && typeof (this.data as any).validate === 'function') { (this.data as any).validate(); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }