import * as $dara from '@darabonba/typescript'; export declare class GetMediaConnectFlowResponseBodyContent extends $dara.Model { /** * @remarks * The creation time of the MediaConnect Flow instance. * * @example * 2024-07-18T01:29:24Z */ createTime?: string; /** * @remarks * Indicates whether Input Failover is enabled for the flow. Valid values: `yes` and `no`. * * @example * yes */ flowFailover?: string; /** * @remarks * The ID of the MediaConnect Flow instance. * * @example * 34900dc6-90ec-4968-af3c-fcd87f231a5f */ flowId?: string; /** * @remarks * The name of the MediaConnect Flow instance. * * @example * AliTestFlow */ flowName?: string; flowRegion?: string; /** * @remarks * The status of the MediaConnect Flow instance. * * @example * online */ flowStatus?: string; /** * @remarks * The start time of the MediaConnect Flow instance. * * @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 description of the API call. * * @example * OK */ description?: string; /** * @remarks * Request ID * * @example * FB503AEF-118E-1516-89E2-7B227EA1AC20 */ requestId?: string; /** * @remarks * The return code. A value of 0 indicates success. * * @example * 0 */ retcode?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }