| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| name | str | [optional] |
from authentik_client.models.device_group import DeviceGroup
# TODO update the JSON string below
json = "{}"
# create an instance of DeviceGroup from a JSON string
device_group_instance = DeviceGroup.from_json(json)
# print the JSON string representation of the object
print(DeviceGroup.to_json())
# convert the object into a dict
device_group_dict = device_group_instance.to_dict()
# create an instance of DeviceGroup from a dict
device_group_from_dict = DeviceGroup.from_dict(device_group_dict)