| Name | Type | Description | Notes |
|---|---|---|---|
| binding | ProtocolEndpointBinding | [optional] | |
| destination | str | [optional] | |
| type | ProtocolEndpointType | [optional] | |
| url | str | [optional] |
from okta.models.protocol_endpoint import ProtocolEndpoint
# TODO update the JSON string below
json = "{}"
# create an instance of ProtocolEndpoint from a JSON string
protocol_endpoint_instance = ProtocolEndpoint.from_json(json)
# print the JSON string representation of the object
print(ProtocolEndpoint.to_json())
# convert the object into a dict
protocol_endpoint_dict = protocol_endpoint_instance.to_dict()
# create an instance of ProtocolEndpoint from a dict
protocol_endpoint_from_dict = ProtocolEndpoint.from_dict(protocol_endpoint_dict)