import * as $dara from '@darabonba/typescript'; export declare class CreateMediaConnectFlowResponseBodyContent extends $dara.Model { /** * @remarks * The flow ID. * * @example * 34900dc6-90ec-4968-af3c-fcd87f231a5f */ flowId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateMediaConnectFlowResponseBody extends $dara.Model { /** * @remarks * The response body. */ content?: CreateMediaConnectFlowResponseBodyContent; /** * @remarks * The returned message. * * @example * OK */ description?: string; /** * @remarks * The ID of the request. * * @example * 86D92F9D-65E8-58A2-85D1-9DEEECC172E8 */ 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; }); }