Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.09 KB

File metadata and controls

32 lines (23 loc) · 1.09 KB

ProtocolEndpoint

Properties

Name Type Description Notes
binding ProtocolEndpointBinding [optional]
destination str [optional]
type ProtocolEndpointType [optional]
url str [optional]

Example

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)

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