Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 983 Bytes

File metadata and controls

32 lines (23 loc) · 983 Bytes

DeviceSummary

Summary of registered devices

Properties

Name Type Description Notes
total_count int
unreachable_count int
outdated_agent_count int

Example

from authentik_client.models.device_summary import DeviceSummary

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

# convert the object into a dict
device_summary_dict = device_summary_instance.to_dict()
# create an instance of DeviceSummary from a dict
device_summary_from_dict = DeviceSummary.from_dict(device_summary_dict)

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