Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

PolicyContextDevice

Properties

Name Type Description Notes
platform str The platform of the device, for example, IOS. [optional]
registered bool If the device is registered [optional]
managed bool If the device is managed [optional]

Example

from okta.models.policy_context_device import PolicyContextDevice

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

# convert the object into a dict
policy_context_device_dict = policy_context_device_instance.to_dict()
# create an instance of PolicyContextDevice from a dict
policy_context_device_from_dict = PolicyContextDevice.from_dict(policy_context_device_dict)

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