import * as $dara from '@darabonba/typescript'; export declare class AddMediaConnectFlowOutputResponseBodyContent extends $dara.Model { /** * @remarks * The output URL. * * @example * srt://1.2.3.4:1025 */ outputUrl?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class AddMediaConnectFlowOutputResponseBody extends $dara.Model { /** * @remarks * The response body. */ content?: AddMediaConnectFlowOutputResponseBodyContent; /** * @remarks * The call description. * * @example * ok */ description?: string; /** * @remarks * The ID of the request. * * @example * 11AA9E73-FBA0-58DC-97BA-D606D847BCB6 */ requestId?: string; /** * @remarks * The returned error code. A value of 0 indicates that 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; }); }