/** * 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. */ /** * Risk-screening axis of a flow's state machine. * @export * @enum {string} */ export declare enum FlowRiskStateEnum { Unknown = "unknown", Pending = "pending", Cleared = "cleared", Blocked = "blocked", Review = "review" } export declare function FlowRiskStateEnumFromJSON(json: any): FlowRiskStateEnum; export declare function FlowRiskStateEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowRiskStateEnum; export declare function FlowRiskStateEnumToJSON(value?: FlowRiskStateEnum | null): any;