Endpoint Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| provider | int | [optional] | |
| protocol | ProtocolEnum | [optional] | |
| host | str | [optional] | |
| settings | Dict[str, object] | [optional] | |
| property_mappings | List[UUID] | [optional] | |
| auth_mode | EndpointAuthModeEnum | [optional] | |
| maximum_connections | int | [optional] |
from authentik_client.models.patched_endpoint_request import PatchedEndpointRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PatchedEndpointRequest from a JSON string
patched_endpoint_request_instance = PatchedEndpointRequest.from_json(json)
# print the JSON string representation of the object
print(PatchedEndpointRequest.to_json())
# convert the object into a dict
patched_endpoint_request_dict = patched_endpoint_request_instance.to_dict()
# create an instance of PatchedEndpointRequest from a dict
patched_endpoint_request_from_dict = PatchedEndpointRequest.from_dict(patched_endpoint_request_dict)