import * as $dara from '@darabonba/typescript'; export declare class SubmitLiveTranscodeJobShrinkRequest extends $dara.Model { /** * @remarks * The name of the transcoding job. * * This parameter is required. * * @example * task1 */ name?: string; /** * @remarks * The start mode of the transcoding job. * * * 0: The transcoding job immediately starts. * * 1: The transcoding job starts at the scheduled time. * * This parameter is required. * * @example * 0 */ startMode?: number; /** * @remarks * The information about the input stream. * * This parameter is required. */ streamInputShrink?: string; /** * @remarks * The template ID. * * This parameter is required. * * @example * ****96e8864746a0b6f3**** */ templateId?: string; /** * @remarks * The configuration of a timed transcoding job. This parameter is required if you set StartMode to 1. */ timedConfigShrink?: string; /** * @remarks * The information about the transcoding output. * * This parameter is required. */ transcodeOutputShrink?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }