import * as $dara from '@darabonba/typescript'; export declare class SubmitLiveRecordJobShrinkRequest extends $dara.Model { /** * @remarks * The name of the recording job. * * This parameter is required. * * @example * live stream record 1 */ name?: string; /** * @remarks * The callback URL. * * @example * https://example.com/imsnotify */ notifyUrl?: string; /** * @remarks * The storage address of the recording. * * This parameter is required. */ recordOutputShrink?: string; /** * @remarks * The URL of the live stream. * * This parameter is required. */ streamInputShrink?: string; /** * @remarks * The ID of the recording template. * * This parameter is required. * * @example * 69e1f9fe-1e97-11ed-ba64-0c42a1b73d66 */ templateId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }