import * as $dara from '@darabonba/typescript'; export declare class SubmitSportsHighlightsJobRequest extends $dara.Model { /** * @remarks * The client token that is used to ensure the idempotence of the request. * * @example * ****12e8864746a0a398**** */ clientToken?: string; /** * @remarks * The input configurations. */ inputConfig?: string; /** * @remarks * The output configurations. * * @example * { * "MediaURL": "http://xxx.oss-cn-shanghai.aliyuncs.com/xxx_{index}.mp4", * "Count": 1, * "Width": 1080, * "Height": 1920 * } */ outputConfig?: string; /** * @remarks * The user-defined data. */ userData?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }