// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class SubmitTraceM3u8JobResponseBodyData extends $dara.Model { /** * @remarks * The job ID. * * @example * bfb786c639894f4d8064879202**** */ 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 SubmitTraceM3u8JobResponseBody extends $dara.Model { /** * @remarks * The data returned. */ data?: SubmitTraceM3u8JobResponseBodyData; /** * @remarks * The response message. * * @example * ok */ message?: string; /** * @remarks * Id of the request * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; static names(): { [key: string]: string } { return { data: 'Data', message: 'Message', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { data: SubmitTraceM3u8JobResponseBodyData, message: 'string', requestId: 'string', }; } 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); } }