import * as $dara from '@darabonba/typescript'; export declare class SubmitMediaConvertJobRequest extends $dara.Model { /** * @remarks * A unique client token that ensures request idempotency. * * @example * 86f8e525-9d73-4dac-88aa-7aa4e950c00a */ clientToken?: string; /** * @remarks * The transcoding job configuration. For more information, see [MediaConvertJobConfig](https://help.aliyun.com/document_detail/2999539.html). * * This parameter is required. */ config?: string; /** * @remarks * The ID of the pipeline for the transcoding job. * * @example * e197ecfb103e4849922b054d3032f954 */ pipelineId?: string; /** * @remarks * Custom data to pass with the job. * * @example * {"videoId":"abcd"} */ userData?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }