InvitationStage Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| continue_flow_without_invitation | bool | If this flag is set, this Stage will jump to the next Stage when no Invitation is given. By default this Stage will cancel the Flow when no invitation is given. | [optional] |
from authentik_client.models.patched_invitation_stage_request import PatchedInvitationStageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedInvitationStageRequest from a JSON string
patched_invitation_stage_request_instance = PatchedInvitationStageRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedInvitationStageRequest.to_json())
# convert the object into a dict
patched_invitation_stage_request_dict = patched_invitation_stage_request_instance.to_dict()
# create an instance of PatchedInvitationStageRequest from a dict
patched_invitation_stage_request_from_dict = PatchedInvitationStageRequest.from_dict(patched_invitation_stage_request_dict)