import * as $dara from '@darabonba/typescript'; export declare class StartAIWorkflowRequest extends $dara.Model { /** * @remarks * The tag for the task. * * @example * default */ dispatchTag?: string; /** * @remarks * A JSON string containing the specific input parameters, such as information about the media assets, standard live streams, or RTC streams. * * @example * { * "live_url": { * "Url": "rtmp://test.com/test_app/test_stream?auth_key=test", * "MaxIdleTime": 20 * }, * "source_language_id": "es" * } */ inputs?: string; /** * @remarks * A user-defined parameter for passing custom metadata. * * @example * { * "url":"https://test.com" * } */ userData?: string; /** * @remarks * The ID of the workflow template. * * @example * ****3f44-f1f6-477e-9364-c5e6c49e**** */ workflowId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }