import * as $dara from '@darabonba/typescript'; export declare class SubmitDynamicImageJobShrinkRequest extends $dara.Model { /** * @remarks * The input of the job. * * This parameter is required. */ inputShrink?: string; /** * @remarks * The name of the job. * * @example * SampleJob */ name?: string; /** * @remarks * The output of the job. * * This parameter is required. */ outputShrink?: string; /** * @remarks * The scheduling settings. */ scheduleConfigShrink?: string; /** * @remarks * The snapshot template configuration. * * This parameter is required. */ templateConfigShrink?: string; /** * @remarks * The user-defined data. * * @example * {"SampleKey": "SampleValue"} */ userData?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }