/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Flow } from './Flow'; /** * Response returned when a flow is created. * @export * @interface FlowCreateResponse */ export interface FlowCreateResponse { /** * * @type {Flow} * @memberof FlowCreateResponse */ flow: Flow; } export declare function FlowCreateResponseFromJSON(json: any): FlowCreateResponse; export declare function FlowCreateResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowCreateResponse; export declare function FlowCreateResponseToJSON(value?: FlowCreateResponse | null): any;