Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

ProtocolAlgorithmType

Properties

Name Type Description Notes
signature ProtocolAlgorithmTypeSignature [optional]

Example

from okta.models.protocol_algorithm_type import ProtocolAlgorithmType

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

# convert the object into a dict
protocol_algorithm_type_dict = protocol_algorithm_type_instance.to_dict()
# create an instance of ProtocolAlgorithmType from a dict
protocol_algorithm_type_from_dict = ProtocolAlgorithmType.from_dict(protocol_algorithm_type_dict)

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