/** * 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 { FlowSet } from './FlowSet'; /** * InvitationStage Serializer * @export * @interface InvitationStage */ export interface InvitationStage { /** * * @type {string} * @memberof InvitationStage */ readonly pk: string; /** * * @type {string} * @memberof InvitationStage */ name: string; /** * Get object type so that we know how to edit the object * @type {string} * @memberof InvitationStage */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof InvitationStage */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof InvitationStage */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof InvitationStage */ readonly metaModelName: string; /** * * @type {Array} * @memberof InvitationStage */ 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 InvitationStage */ continueFlowWithoutInvitation?: boolean; } /** * Check if a given object implements the InvitationStage interface. */ export declare function instanceOfInvitationStage(value: object): value is InvitationStage; export declare function InvitationStageFromJSON(json: any): InvitationStage; export declare function InvitationStageFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvitationStage; export declare function InvitationStageToJSON(json: any): InvitationStage; export declare function InvitationStageToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=InvitationStage.d.ts.map