Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

File metadata and controls

32 lines (23 loc) · 1.17 KB

ElementConnection

The list of connections

Properties

Name Type Description Notes
from_element_id str The fromElementId defines the element where the connections starts.
to_element_id str The toElementId defines the element where the connections ends.
type ElementConnectionType

Example

from touroptimizer_py_client.models.element_connection import ElementConnection

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

# convert the object into a dict
element_connection_dict = element_connection_instance.to_dict()
# create an instance of ElementConnection from a dict
element_connection_form_dict = element_connection.from_dict(element_connection_dict)

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