Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.38 KB

File metadata and controls

35 lines (26 loc) · 1.38 KB

PatchedEndpointDeviceRequest

Properties

Name Type Description Notes
device_uuid UUID [optional]
name str [optional]
access_group UUID [optional]
access_group_obj DeviceAccessGroupRequest [optional]
expiring bool [optional]
expires datetime [optional]
attributes Dict[str, object] [optional]

Example

from authentik_client.models.patched_endpoint_device_request import PatchedEndpointDeviceRequest

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

# convert the object into a dict
patched_endpoint_device_request_dict = patched_endpoint_device_request_instance.to_dict()
# create an instance of PatchedEndpointDeviceRequest from a dict
patched_endpoint_device_request_from_dict = PatchedEndpointDeviceRequest.from_dict(patched_endpoint_device_request_dict)

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