Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

File metadata and controls

31 lines (22 loc) · 1.21 KB

InvitationStageRequest

InvitationStage Serializer

Properties

Name Type Description Notes
name str
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]

Example

from authentik_client.models.invitation_stage_request import InvitationStageRequest

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

# convert the object into a dict
invitation_stage_request_dict = invitation_stage_request_instance.to_dict()
# create an instance of InvitationStageRequest from a dict
invitation_stage_request_from_dict = InvitationStageRequest.from_dict(invitation_stage_request_dict)

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