Serializer for stages which can be selected by users
| Name | Type | Description | Notes |
|---|---|---|---|
| pk | UUID | ||
| name | str | ||
| verbose_name | str | ||
| meta_model_name | str |
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)