/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { InvalidResponseActionEnum } from './InvalidResponseActionEnum'; import type { PolicyEngineMode } from './PolicyEngineMode'; /** * FlowStageBinding Serializer * @export * @interface FlowStageBindingRequest */ export interface FlowStageBindingRequest { /** * * @type {string} * @memberof FlowStageBindingRequest */ target: string; /** * * @type {string} * @memberof FlowStageBindingRequest */ stage: string; /** * Evaluate policies during the Flow planning process. * @type {boolean} * @memberof FlowStageBindingRequest */ evaluateOnPlan?: boolean; /** * Evaluate policies when the Stage is presented to the user. * @type {boolean} * @memberof FlowStageBindingRequest */ reEvaluatePolicies?: boolean; /** * * @type {number} * @memberof FlowStageBindingRequest */ order: number; /** * * @type {PolicyEngineMode} * @memberof FlowStageBindingRequest */ policyEngineMode?: PolicyEngineMode; /** * Configure how the flow executor should handle an invalid response to a challenge. RETRY returns the error message and a similar challenge to the executor. RESTART restarts the flow from the beginning, and RESTART_WITH_CONTEXT restarts the flow while keeping the current context. * @type {InvalidResponseActionEnum} * @memberof FlowStageBindingRequest */ invalidResponseAction?: InvalidResponseActionEnum; } /** * Check if a given object implements the FlowStageBindingRequest interface. */ export declare function instanceOfFlowStageBindingRequest(value: object): value is FlowStageBindingRequest; export declare function FlowStageBindingRequestFromJSON(json: any): FlowStageBindingRequest; export declare function FlowStageBindingRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowStageBindingRequest; export declare function FlowStageBindingRequestToJSON(json: any): FlowStageBindingRequest; export declare function FlowStageBindingRequestToJSONTyped(value?: FlowStageBindingRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FlowStageBindingRequest.d.ts.map