| Name | Type | Description | Notes |
|---|---|---|---|
| request | ProtocolAlgorithmType | [optional] | |
| response | ProtocolAlgorithmType | [optional] |
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)