EndpointStage Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| connector | UUID | [optional] | |
| mode | StageModeEnum | [optional] |
from authentik_client.models.patched_endpoint_stage_request import PatchedEndpointStageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedEndpointStageRequest from a JSON string
patched_endpoint_stage_request_instance = PatchedEndpointStageRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedEndpointStageRequest.to_json())
# convert the object into a dict
patched_endpoint_stage_request_dict = patched_endpoint_stage_request_instance.to_dict()
# create an instance of PatchedEndpointStageRequest from a dict
patched_endpoint_stage_request_from_dict = PatchedEndpointStageRequest.from_dict(patched_endpoint_stage_request_dict)