/** * 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 PatchedInvitationStageRequest */ export interface PatchedInvitationStageRequest { /** * * @type {string} * @memberof PatchedInvitationStageRequest */ name?: string; /** * * @type {Array} * @memberof PatchedInvitationStageRequest */ 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 PatchedInvitationStageRequest */ continueFlowWithoutInvitation?: boolean; } /** * Check if a given object implements the PatchedInvitationStageRequest interface. */ export declare function instanceOfPatchedInvitationStageRequest(value: object): value is PatchedInvitationStageRequest; export declare function PatchedInvitationStageRequestFromJSON(json: any): PatchedInvitationStageRequest; export declare function PatchedInvitationStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedInvitationStageRequest; export declare function PatchedInvitationStageRequestToJSON(json: any): PatchedInvitationStageRequest; export declare function PatchedInvitationStageRequestToJSONTyped(value?: PatchedInvitationStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedInvitationStageRequest.d.ts.map