Display name of the device
| Name | Type | Description | Notes |
|---|---|---|---|
| sensitive | bool | [optional] | |
| value | str | [optional] |
from okta.models.device_display_name import DeviceDisplayName
# TODO update the JSON string below
json = "{}"
# create an instance of DeviceDisplayName from a JSON string
device_display_name_instance = DeviceDisplayName.from_json(json)
# print the JSON string representation of the object
print(DeviceDisplayName.to_json())
# convert the object into a dict
device_display_name_dict = device_display_name_instance.to_dict()
# create an instance of DeviceDisplayName from a dict
device_display_name_from_dict = DeviceDisplayName.from_dict(device_display_name_dict)