import * as $dara from '@darabonba/typescript'; export declare class QueryTraceAbJobListResponseBodyDataInput extends $dara.Model { /** * @remarks * The specific input file information. * * @example * oss://bucket/object */ media?: string; /** * @remarks * The type of the input file. Valid values: * * 1. OSS: an Object Storage Service (OSS) object. * 2. Media: a media asset. * * @example * OSS */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryTraceAbJobListResponseBodyDataOutput extends $dara.Model { /** * @remarks * The output directory. * * @example * oss://bucket/dir/ */ media?: string; /** * @remarks * The type of the output file. Valid values: * * 1. OSS: an OSS object. * 2. Media: a media asset. * * @example * OSS */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryTraceAbJobListResponseBodyData extends $dara.Model { /** * @remarks * The creation time of the job. * * @example * 1627357322 */ gmtCreate?: number; /** * @remarks * The last modification time of the job. * * @example * 1627357322 */ gmtModified?: number; /** * @remarks * Information about the input video for watermarking. */ input?: QueryTraceAbJobListResponseBodyDataInput; /** * @remarks * The job ID. * * @example * bfb786c639894f4d80648792021eff90 */ jobId?: string; /** * @remarks * The watermark level. * * @example * 2 */ level?: number; /** * @remarks * Information about the output path for the A/B stream. */ output?: QueryTraceAbJobListResponseBodyDataOutput; /** * @remarks * The job result. * * @example * {"Code":"success","Message":"ok"} */ result?: string; /** * @remarks * The status of the job. * * @example * success */ status?: string; /** * @remarks * The media ID for the trace watermark. * * @example * ****437bd2b51105d07b12a9**** */ traceMediaId?: string; /** * @remarks * The user-defined data. * * @example * 123 */ userData?: string; /** * @remarks * The ID of the user who initiated the job. * * @example * 13466932**** */ userId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryTraceAbJobListResponseBody extends $dara.Model { /** * @remarks * The data returned. */ data?: QueryTraceAbJobListResponseBodyData[]; /** * @remarks * The message returned. * * @example * ok */ message?: string; /** * @remarks * The ID of the request. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; /** * @remarks * The status code. * * @example * 200 */ statusCode?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }