Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 1.6 KB

File metadata and controls

46 lines (37 loc) · 1.6 KB

OrgSetting

Properties

Name Type Description Notes
address1 str [optional]
address2 str [optional]
city str [optional]
company_name str [optional]
country str [optional]
created datetime [optional] [readonly]
end_user_support_help_url str [optional]
expires_at datetime [optional] [readonly]
id str [optional] [readonly]
last_updated datetime [optional] [readonly]
phone_number str [optional]
postal_code str [optional]
state str [optional]
status str [optional] [readonly]
subdomain str [optional] [readonly]
support_phone_number str [optional]
website str [optional]
links LinksSelf [optional]

Example

from okta.models.org_setting import OrgSetting

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

# convert the object into a dict
org_setting_dict = org_setting_instance.to_dict()
# create an instance of OrgSetting from a dict
org_setting_from_dict = OrgSetting.from_dict(org_setting_dict)

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