import * as $dara from '@darabonba/typescript'; export declare class GetMediaConnectFlowResponseBodyContent extends $dara.Model { /** * @remarks * The time when the flow was created. * * @example * 2024-07-18T01:29:24Z */ createTime?: string; flowFailover?: string; /** * @remarks * The flow ID. * * @example * 34900dc6-90ec-4968-af3c-fcd87f231a5f */ flowId?: string; /** * @remarks * The flow name. * * @example * AliTestFlow */ flowName?: string; flowRegion?: string; /** * @remarks * The state of the flow. * * @example * online */ flowStatus?: string; /** * @remarks * The time when the flow is started. * * @example * 2024-07-18T01:39:24Z */ startTime?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetMediaConnectFlowResponseBody extends $dara.Model { /** * @remarks * The response body. */ content?: GetMediaConnectFlowResponseBodyContent; /** * @remarks * The call description. * * @example * OK */ description?: string; /** * @remarks * The ID of the request. * * @example * FB503AEF-118E-1516-89E2-7B227EA1AC20 */ requestId?: string; /** * @remarks * The returned 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; }); }