For example: {"family":"linux","name":"Ubuntu","version":"24.04.3 LTS (Noble Numbat)","arch":"amd64"} {"family": "windows","name":"Server 2022 Datacenter","version":"10.0.20348.4405","arch":"amd64"} {"family": "windows","name":"Server 2022 Datacenter","version":"10.0.20348.4405","arch":"amd64"} {"family": "mac_os", "name": "", "version": "26.2", "arch": "arm64"}
| Name | Type | Description | Notes |
|---|---|---|---|
| family | DeviceFactsOSFamily | ||
| name | str | Operating System name, such as 'Server 2022' or 'Ubuntu' | [optional] |
| version | str | Operating System version, must always be the version number but may contain build name | [optional] |
| arch | str |
from authentik_client.models.operating_system_request import OperatingSystemRequest
# TODO update the JSON string below
json = "{}"
# create an instance of OperatingSystemRequest from a JSON string
operating_system_request_instance = OperatingSystemRequest.from_json(json)
# print the JSON string representation of the object
print(OperatingSystemRequest.to_json())
# convert the object into a dict
operating_system_request_dict = operating_system_request_instance.to_dict()
# create an instance of OperatingSystemRequest from a dict
operating_system_request_from_dict = OperatingSystemRequest.from_dict(operating_system_request_dict)