import * as $dara from '@darabonba/typescript'; export declare class SubmitTraceAbJobResponseBodyData extends $dara.Model { /** * @remarks * The job ID. * * @example * bfb786c639894f4d80648792021e**** */ jobId?: string; /** * @remarks * The ID of the media asset created for tracing. * * @example * bf53333264f4d80648792021e**** */ traceMediaId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class SubmitTraceAbJobResponseBody extends $dara.Model { /** * @remarks * Contains the IDs for the submitted job and the output media asset. */ data?: SubmitTraceAbJobResponseBodyData; /** * @remarks * The response message. A value of `ok` indicates a successful request. * * @example * ok */ message?: string; /** * @remarks * The unique identifier for the request. If you encounter an issue, provide this ID for technical support. * * @example * ******36-3C1E-4417-BDB2-1E034F****** */ requestId?: string; /** * @remarks * The HTTP status code. A value of `200` indicates success. * * @example * 200 */ statusCode?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }