Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.66 KB

File metadata and controls

38 lines (29 loc) · 1.66 KB

Device

Properties

Name Type Description Notes
created datetime Timestamp when the device was created [optional] [readonly]
id str Unique key for the device [optional] [readonly]
last_updated datetime Timestamp when the device record was last updated. Updates occur when Okta collects and saves device signals during authentication, and when the lifecycle state of the device changes. [optional] [readonly]
profile DeviceProfile [optional]
resource_alternate_id str [optional] [readonly]
resource_display_name DeviceDisplayName [optional]
resource_id str Alternate key for the `id` [optional] [readonly]
resource_type str [optional] [readonly] [default to 'UDDevice']
status DeviceStatus [optional]
links LinksSelfAndFullUsersLifecycle [optional]

Example

from okta.models.device import Device

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

# convert the object into a dict
device_dict = device_instance.to_dict()
# create an instance of Device from a dict
device_from_dict = Device.from_dict(device_dict)

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