| Name | Type | Description | Notes |
|---|---|---|---|
| algorithms | ProtocolAlgorithms | [optional] | |
| credentials | IdentityProviderCredentials | [optional] | |
| endpoints | ProtocolEndpoints | [optional] | |
| issuer | ProtocolEndpoint | [optional] | |
| relay_state | ProtocolRelayState | [optional] | |
| scopes | List[str] | [optional] | |
| settings | ProtocolSettings | [optional] | |
| type | ProtocolType | [optional] |
from okta.models.protocol import Protocol
# TODO update the JSON string below
json = "{}"
# create an instance of Protocol from a JSON string
protocol_instance = Protocol.from_json(json)
# print the JSON string representation of the object
print(Protocol.to_json())
# convert the object into a dict
protocol_dict = protocol_instance.to_dict()
# create an instance of Protocol from a dict
protocol_from_dict = Protocol.from_dict(protocol_dict)