Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.37 KB

File metadata and controls

34 lines (25 loc) · 1.37 KB

Realm

Properties

Name Type Description Notes
created datetime Timestamp when the realm was created [optional] [readonly]
id str Unique ID for the realm [optional] [readonly]
is_default bool Indicates the default realm. Existing users will start out in the default realm and can be moved to other realms individually or through realm assignments. See Realms Assignments API. [optional] [readonly]
last_updated datetime Timestamp when the realm was 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]