Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1022 Bytes

File metadata and controls

31 lines (22 loc) · 1022 Bytes

DeviceAccessGroup

Properties

Name Type Description Notes
pbm_uuid UUID [readonly]
name str
attributes Dict[str, object] [optional]

Example

from authentik_client.models.device_access_group import DeviceAccessGroup

# TODO update the JSON string below
json = "{}"
# create an instance of DeviceAccessGroup from a JSON string
device_access_group_instance = DeviceAccessGroup.from_json(json)
# print the JSON string representation of the object
print(DeviceAccessGroup.to_json())

# convert the object into a dict
device_access_group_dict = device_access_group_instance.to_dict()
# create an instance of DeviceAccessGroup from a dict
device_access_group_from_dict = DeviceAccessGroup.from_dict(device_access_group_dict)

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