/** * 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 { FlowSetRequest } from './FlowSetRequest'; /** * InvitationStage Serializer * @export * @interface InvitationStageRequest */ export interface InvitationStageRequest { /** * * @type {string} * @memberof InvitationStageRequest */ name: string; /** * * @type {Array} * @memberof InvitationStageRequest */ flowSet?: Array; /** * If this flag is set, this Stage will jump to the next Stage when no Invitation is given. By default this Stage will cancel the Flow when no invitation is given. * @type {boolean} * @memberof InvitationStageRequest */ continueFlowWithoutInvitation?: boolean; } /** * Check if a given object implements the InvitationStageRequest interface. */ export declare function instanceOfInvitationStageRequest(value: object): value is InvitationStageRequest; export declare function InvitationStageRequestFromJSON(json: any): InvitationStageRequest; export declare function InvitationStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvitationStageRequest; export declare function InvitationStageRequestToJSON(json: any): InvitationStageRequest; export declare function InvitationStageRequestToJSONTyped(value?: InvitationStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=InvitationStageRequest.d.ts.map