Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.33 KB

File metadata and controls

36 lines (27 loc) · 1.33 KB

UserLogoutStage

UserLogoutStage Serializer

Properties

Name Type Description Notes
pk UUID [readonly]
name str
component str Get object type so that we know how to edit the object [readonly]
verbose_name str Return object's verbose_name [readonly]
verbose_name_plural str Return object's plural verbose_name [readonly]
meta_model_name str Return internal model name [readonly]
flow_set List[FlowSet] [readonly]

Example

from authentik_client.models.user_logout_stage import UserLogoutStage

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

# convert the object into a dict
user_logout_stage_dict = user_logout_stage_instance.to_dict()
# create an instance of UserLogoutStage from a dict
user_logout_stage_from_dict = UserLogoutStage.from_dict(user_logout_stage_dict)

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