| Name |
Type |
Description |
Notes |
| model |
str |
|
[optional] |
| manufacturer |
str |
|
[optional] |
| serial |
str |
|
|
| cpu_name |
str |
|
[optional] |
| cpu_count |
int |
|
[optional] |
| memory_bytes |
int |
|
[optional] |
from authentik_client.models.hardware import Hardware
# TODO update the JSON string below
json = "{}"
# create an instance of Hardware from a JSON string
hardware_instance = Hardware.from_json(json)
# print the JSON string representation of the object
print(Hardware.to_json())
# convert the object into a dict
hardware_dict = hardware_instance.to_dict()
# create an instance of Hardware from a dict
hardware_from_dict = Hardware.from_dict(hardware_dict)
[Back to Model list] [Back to API list] [Back to README]