Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.01 KB

File metadata and controls

33 lines (24 loc) · 1.01 KB

SelectableStage

Serializer for stages which can be selected by users

Properties

Name Type Description Notes
pk UUID
name str
verbose_name str
meta_model_name str

Example

from authentik_client.models.selectable_stage import SelectableStage

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

# convert the object into a dict
selectable_stage_dict = selectable_stage_instance.to_dict()
# create an instance of SelectableStage from a dict
selectable_stage_from_dict = SelectableStage.from_dict(selectable_stage_dict)

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