Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.19 KB

File metadata and controls

30 lines (21 loc) · 1.19 KB

ProtocolAlgorithmTypeSignature

Properties

Name Type Description Notes
algorithm str [optional]
scope ProtocolAlgorithmTypeSignatureScope [optional]

Example

from okta.models.protocol_algorithm_type_signature import ProtocolAlgorithmTypeSignature

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

# convert the object into a dict
protocol_algorithm_type_signature_dict = protocol_algorithm_type_signature_instance.to_dict()
# create an instance of ProtocolAlgorithmTypeSignature from a dict
protocol_algorithm_type_signature_from_dict = ProtocolAlgorithmTypeSignature.from_dict(protocol_algorithm_type_signature_dict)

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