Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.07 KB

File metadata and controls

32 lines (23 loc) · 1.07 KB

DeviceConnection

Properties

Name Type Description Notes
device UUID
connector UUID
connector_obj Connector [readonly]
latest_snapshot DeviceFactSnapshot [readonly]

Example

from authentik_client.models.device_connection import DeviceConnection

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

# convert the object into a dict
device_connection_dict = device_connection_instance.to_dict()
# create an instance of DeviceConnection from a dict
device_connection_from_dict = DeviceConnection.from_dict(device_connection_dict)

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