Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.21 KB

File metadata and controls

34 lines (25 loc) · 1.21 KB

InvitationRequest

Invitation Serializer

Properties

Name Type Description Notes
name str
expires datetime [optional]
fixed_data Dict[str, object] [optional]
single_use bool When enabled, the invitation will be deleted after usage. [optional]
flow UUID When set, only the configured flow can use this invitation. [optional]

Example

from authentik_client.models.invitation_request import InvitationRequest

# TODO update the JSON string below
json = "{}"
# create an instance of InvitationRequest from a JSON string
invitation_request_instance = InvitationRequest.from_json(json)
# print the JSON string representation of the object
print(InvitationRequest.to_json())

# convert the object into a dict
invitation_request_dict = invitation_request_instance.to_dict()
# create an instance of InvitationRequest from a dict
invitation_request_from_dict = InvitationRequest.from_dict(invitation_request_dict)

[Back to Model list] [Back to API list] [Back to README]