/** * 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 { GroupMember } from './GroupMember'; import type { Flow } from './Flow'; /** * Invitation Serializer * @export * @interface Invitation */ export interface Invitation { /** * * @type {string} * @memberof Invitation */ readonly pk: string; /** * * @type {string} * @memberof Invitation */ name: string; /** * * @type {Date} * @memberof Invitation */ expires?: Date | null; /** * * @type {{ [key: string]: any; }} * @memberof Invitation */ fixedData?: { [key: string]: any; }; /** * * @type {GroupMember} * @memberof Invitation */ readonly createdBy: GroupMember; /** * When enabled, the invitation will be deleted after usage. * @type {boolean} * @memberof Invitation */ singleUse?: boolean; /** * When set, only the configured flow can use this invitation. * @type {string} * @memberof Invitation */ flow?: string | null; /** * * @type {Flow} * @memberof Invitation */ readonly flowObj: Flow; } /** * Check if a given object implements the Invitation interface. */ export declare function instanceOfInvitation(value: object): value is Invitation; export declare function InvitationFromJSON(json: any): Invitation; export declare function InvitationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Invitation; export declare function InvitationToJSON(json: any): Invitation; export declare function InvitationToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Invitation.d.ts.map