| Name | Type | Description | Notes |
|---|---|---|---|
| os | OperatingSystemRequest | [optional] | |
| disks | List[DiskRequest] | [optional] | |
| network | NetworkRequest | [optional] | |
| hardware | HardwareRequest | [optional] | |
| software | List[SoftwareRequest] | [optional] | |
| processes | List[ProcessRequest] | [optional] | |
| users | List[DeviceUserRequest] | [optional] | |
| groups | List[DeviceGroupRequest] | [optional] | |
| vendor | Dict[str, object] | [optional] |
from authentik_client.models.device_facts_request import DeviceFactsRequest
# TODO update the JSON string below
json = "{}"
# create an instance of DeviceFactsRequest from a JSON string
device_facts_request_instance = DeviceFactsRequest.from_json(json)
# print the JSON string representation of the object
print(DeviceFactsRequest.to_json())
# convert the object into a dict
device_facts_request_dict = device_facts_request_instance.to_dict()
# create an instance of DeviceFactsRequest from a dict
device_facts_request_from_dict = DeviceFactsRequest.from_dict(device_facts_request_dict)