// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class SubmitBatchMediaProducingJobRequest extends $dara.Model { /** * @remarks * The client token that is used to ensure the idempotence of the request. * * @example * ****12e8864746a0a398**** */ clientToken?: string; /** * @remarks * The editing configurations. For more information, see [EditingConfig](~~2692547#1be9bba03b7qu~~). * * @example * { * "MediaConfig": { * "Volume": 0 * }, * "SpeechConfig": { * "Volume": 1 * }, * "BackgroundMusicConfig": { * "Volume": 0.3 * } * } */ editingConfig?: string; /** * @remarks * The input configurations. For more information, see [InputConfig](~~2692547#2faed1559549n~~). */ inputConfig?: string; /** * @remarks * The output configurations. For more information, see [OutputConfig](~~2692547#447b928fcbuoa~~). * * @example * { * "MediaURL": "http://xxx.oss-cn-shanghai.aliyuncs.com/xxx_{index}.mp4", * "Count": 20, * "MaxDuration": 15, * "Width": 1080, * "Height": 1920, * "Video": {"Crf": 27} * } */ outputConfig?: string; templateConfig?: string; /** * @remarks * The user-defined data, including the business and callback configurations. For more information, see [UserData](https://help.aliyun.com/document_detail/357745.html). */ userData?: string; static names(): { [key: string]: string } { return { clientToken: 'ClientToken', editingConfig: 'EditingConfig', inputConfig: 'InputConfig', outputConfig: 'OutputConfig', templateConfig: 'TemplateConfig', userData: 'UserData', }; } static types(): { [key: string]: any } { return { clientToken: 'string', editingConfig: 'string', inputConfig: 'string', outputConfig: 'string', templateConfig: 'string', userData: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }