// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class SubmitMediaProducingJobResponseBody extends $dara.Model { /** * @remarks * The job ID. * * @example * ****d80e4e4044975745c14b**** */ jobId?: string; /** * @remarks * The media asset ID of the output file. * * @example * ****c469e944b5a856828dc2**** */ mediaId?: string; /** * @remarks * The ID of the editing project. * * @example * ****b4549d46c88681030f6e**** */ projectId?: string; /** * @remarks * The request ID. * * @example * ****36-3C1E-4417-BDB2-1E034F**** */ requestId?: string; /** * @remarks * The media asset ID of the output file in ApsaraVideo VOD if the output file is stored in ApsaraVideo VOD. * * @example * ****d8s4h75ci975745c14b**** */ vodMediaId?: string; static names(): { [key: string]: string } { return { jobId: 'JobId', mediaId: 'MediaId', projectId: 'ProjectId', requestId: 'RequestId', vodMediaId: 'VodMediaId', }; } static types(): { [key: string]: any } { return { jobId: 'string', mediaId: 'string', projectId: 'string', requestId: 'string', vodMediaId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }