| Name | Type | Description | Notes |
|---|---|---|---|
| format | ProtocolRelayStateFormat | [optional] |
from okta.models.protocol_relay_state import ProtocolRelayState
# TODO update the JSON string below
json = "{}"
# create an instance of ProtocolRelayState from a JSON string
protocol_relay_state_instance = ProtocolRelayState.from_json(json)
# print the JSON string representation of the object
print(ProtocolRelayState.to_json())
# convert the object into a dict
protocol_relay_state_dict = protocol_relay_state_instance.to_dict()
# create an instance of ProtocolRelayState from a dict
protocol_relay_state_from_dict = ProtocolRelayState.from_dict(protocol_relay_state_dict)