Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 875 Bytes

File metadata and controls

30 lines (21 loc) · 875 Bytes

DeviceGroup

Properties

Name Type Description Notes
id str
name str [optional]

Example

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)

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