Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 994 Bytes

File metadata and controls

31 lines (22 loc) · 994 Bytes

DeviceDisplayName

Display name of the device

Properties

Name Type Description Notes
sensitive bool [optional]
value str [optional]

Example

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)

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