| Name | Type | Description | Notes |
|---|---|---|---|
| signature | ProtocolAlgorithmTypeSignature | [optional] |
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)