EndpointStage Serializer
| 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] | |
| connector | UUID | ||
| connector_obj | Connector | [readonly] | |
| mode | StageModeEnum | [optional] |
from authentik_client.models.endpoint_stage import EndpointStage
# TODO update the JSON string below
json = "{}"
# create an instance of EndpointStage from a JSON string
endpoint_stage_instance = EndpointStage.from_json(json)
# print the JSON string representation of the object
print(EndpointStage.to_json())
# convert the object into a dict
endpoint_stage_dict = endpoint_stage_instance.to_dict()
# create an instance of EndpointStage from a dict
endpoint_stage_from_dict = EndpointStage.from_dict(endpoint_stage_dict)