Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

ProtocolAlgorithms

Properties

Name Type Description Notes
request ProtocolAlgorithmType [optional]
response ProtocolAlgorithmType [optional]

Example

from okta.models.protocol_algorithms import ProtocolAlgorithms

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

# convert the object into a dict
protocol_algorithms_dict = protocol_algorithms_instance.to_dict()
# create an instance of ProtocolAlgorithms from a dict
protocol_algorithms_from_dict = ProtocolAlgorithms.from_dict(protocol_algorithms_dict)

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