Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.06 KB

File metadata and controls

32 lines (23 loc) · 1.06 KB

EndpointStageRequest

EndpointStage Serializer

Properties

Name Type Description Notes
name str
connector UUID
mode StageModeEnum [optional]

Example

from authentik_client.models.endpoint_stage_request import EndpointStageRequest

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

# convert the object into a dict
endpoint_stage_request_dict = endpoint_stage_request_instance.to_dict()
# create an instance of EndpointStageRequest from a dict
endpoint_stage_request_from_dict = EndpointStageRequest.from_dict(endpoint_stage_request_dict)

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