Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 912 Bytes

File metadata and controls

29 lines (20 loc) · 912 Bytes

ProtocolSettings

Properties

Name Type Description Notes
name_format str [optional]

Example

from okta.models.protocol_settings import ProtocolSettings

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

# convert the object into a dict
protocol_settings_dict = protocol_settings_instance.to_dict()
# create an instance of ProtocolSettings from a dict
protocol_settings_from_dict = ProtocolSettings.from_dict(protocol_settings_dict)

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