/** * 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. */ /** * Invitation Serializer * @export * @interface InvitationRequest */ export interface InvitationRequest { /** * * @type {string} * @memberof InvitationRequest */ name: string; /** * * @type {Date} * @memberof InvitationRequest */ expires?: Date | null; /** * * @type {{ [key: string]: any; }} * @memberof InvitationRequest */ fixedData?: { [key: string]: any; }; /** * When enabled, the invitation will be deleted after usage. * @type {boolean} * @memberof InvitationRequest */ singleUse?: boolean; /** * When set, only the configured flow can use this invitation. * @type {string} * @memberof InvitationRequest */ flow?: string | null; } /** * Check if a given object implements the InvitationRequest interface. */ export declare function instanceOfInvitationRequest(value: object): value is InvitationRequest; export declare function InvitationRequestFromJSON(json: any): InvitationRequest; export declare function InvitationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvitationRequest; export declare function InvitationRequestToJSON(json: any): InvitationRequest; export declare function InvitationRequestToJSONTyped(value?: InvitationRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=InvitationRequest.d.ts.map