Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.28 KB

File metadata and controls

35 lines (26 loc) · 1.28 KB

EndpointDeviceRequest

Properties

Name Type Description Notes
device_uuid UUID [optional]
name str
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.endpoint_device_request import EndpointDeviceRequest

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

# convert the object into a dict
endpoint_device_request_dict = endpoint_device_request_instance.to_dict()
# create an instance of EndpointDeviceRequest from a dict
endpoint_device_request_from_dict = EndpointDeviceRequest.from_dict(endpoint_device_request_dict)

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