Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 901 Bytes

DeviceConsole.md

File metadata and controls

30 lines (21 loc) · 901 Bytes

DeviceConsole

Properties

Name Type Description Notes
g_rpc_endpoint str
session_id str

Example

from flightctl.models.device_console import DeviceConsole

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

# convert the object into a dict
device_console_dict = device_console_instance.to_dict()
# create an instance of DeviceConsole from a dict
device_console_from_dict = DeviceConsole.from_dict(device_console_dict)

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