/** * 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. */ /** * Execution axis of a flow's state machine. * @export * @enum {string} */ export declare enum FlowExecutionStateEnum { Initiated = "initiated", SourceAttached = "source_attached", Quoted = "quoted", Signing = "signing", Broadcasted = "broadcasted", SourceConfirmed = "source_confirmed", Cancelled = "cancelled", Expired = "expired", Failed = "failed" } export declare function FlowExecutionStateEnumFromJSON(json: any): FlowExecutionStateEnum; export declare function FlowExecutionStateEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowExecutionStateEnum; export declare function FlowExecutionStateEnumToJSON(value?: FlowExecutionStateEnum | null): any;