import * as $dara from '@darabonba/typescript'; export declare class SubmitMediaConvertJobRequest extends $dara.Model { /** * @remarks * The idempotency key that is used to ensure repeated requests have the same effect as a single request. * * @example * 86f8e525-9d73-4dac-88aa-7aa4e950c00a */ clientToken?: string; /** * @remarks * The configurations of the transcoding task. * * This parameter is required. */ config?: string; /** * @remarks * The ID of the queue. * * @example * e197ecfb103e4849922b054d3032f954 */ pipelineId?: string; /** * @remarks * The user data. * * @example * {"videoId":"abcd"} */ userData?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }