import * as $dara from '@darabonba/typescript'; export declare class AddMediaConnectFlowInputResponseBodyContent extends $dara.Model { innerInputUrl?: string; /** * @remarks * The source URL. * * @example * rtmp://1.2.3.4:1935/live/AliTestInput_8666ec062190f00e263012666319a5be */ inputUrl?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class AddMediaConnectFlowInputResponseBody extends $dara.Model { /** * @remarks * The response body. */ content?: AddMediaConnectFlowInputResponseBodyContent; /** * @remarks * The call description. * * @example * OK */ description?: string; /** * @remarks * The ID of the request. * * @example * 11357BE8-4C54-58EA-890A-5AB646EDE4B2 */ requestId?: string; /** * @remarks * The returned error code. A value of 0 indicates the call is successful. * * @example * 0 */ retCode?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }