Invitation Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| 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] |
from authentik_client.models.patched_invitation_request import PatchedInvitationRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedInvitationRequest from a JSON string
patched_invitation_request_instance = PatchedInvitationRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedInvitationRequest.to_json())
# convert the object into a dict
patched_invitation_request_dict = patched_invitation_request_instance.to_dict()
# create an instance of PatchedInvitationRequest from a dict
patched_invitation_request_from_dict = PatchedInvitationRequest.from_dict(patched_invitation_request_dict)