/** * 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. */ /** * Structured failure detail recorded on a flow when an operation fails. * @export * @interface FlowFailure */ export interface FlowFailure { /** * * @type {string} * @memberof FlowFailure */ code: string; /** * Human-readable error message describing the failure * @type {string} * @memberof FlowFailure */ message: string; /** * * @type {string} * @memberof FlowFailure */ category: string; /** * * @type {string} * @memberof FlowFailure */ stage: string; /** * Whether the failed operation can be retried * @type {boolean} * @memberof FlowFailure */ retryable: boolean; /** * Additional structured details about the failure * @type {object} * @memberof FlowFailure */ details?: object; } export declare function FlowFailureFromJSON(json: any): FlowFailure; export declare function FlowFailureFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowFailure; export declare function FlowFailureToJSON(value?: FlowFailure | null): any;