Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.17 KB

File metadata and controls

34 lines (25 loc) · 1.17 KB

Realm

Properties

Name Type Description Notes
created datetime Timestamp when the Realm was created [optional] [readonly]
id str Unique key for the Realm [optional] [readonly]
is_default bool Conveys whether the Realm is the default [optional] [readonly]
last_updated datetime Timestamp when the Realm was last updated [optional] [readonly]
profile RealmProfile [optional]
links LinksSelf [optional]

Example

from okta.models.realm import Realm

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

# convert the object into a dict
realm_dict = realm_instance.to_dict()
# create an instance of Realm from a dict
realm_from_dict = Realm.from_dict(realm_dict)

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