Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

DeviceAccessGroupRequest

Properties

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

Example

from authentik_client.models.device_access_group_request import DeviceAccessGroupRequest

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

# convert the object into a dict
device_access_group_request_dict = device_access_group_request_instance.to_dict()
# create an instance of DeviceAccessGroupRequest from a dict
device_access_group_request_from_dict = DeviceAccessGroupRequest.from_dict(device_access_group_request_dict)

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