| Name | Type | Description | Notes |
|---|---|---|---|
| acs | ProtocolEndpoint | [optional] | |
| authorization | ProtocolEndpoint | [optional] | |
| jwks | ProtocolEndpoint | [optional] | |
| metadata | ProtocolEndpoint | [optional] | |
| slo | ProtocolEndpoint | [optional] | |
| sso | ProtocolEndpoint | [optional] | |
| token | ProtocolEndpoint | [optional] | |
| user_info | ProtocolEndpoint | [optional] |
from okta.models.protocol_endpoints import ProtocolEndpoints
# TODO update the JSON string below
json = "{}"
# create an instance of ProtocolEndpoints from a JSON string
protocol_endpoints_instance = ProtocolEndpoints.from_json(json)
# print the JSON string representation of the object
print(ProtocolEndpoints.to_json())
# convert the object into a dict
protocol_endpoints_dict = protocol_endpoints_instance.to_dict()
# create an instance of ProtocolEndpoints from a dict
protocol_endpoints_from_dict = ProtocolEndpoints.from_dict(protocol_endpoints_dict)