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