from ideastatica_connection_api.models.reference_element import ReferenceElement
# TODO update the JSON string below
json = "{}"
# create an instance of ReferenceElement from a JSON string
reference_element_instance = ReferenceElement.from_json(json)
# print the JSON string representation of the object
print(reference_element_instance.to_json())
# convert the object into a dict
reference_element_dict = reference_element_instance.to_dict()
# create an instance of ReferenceElement from a dict
reference_element_from_dict = ReferenceElement.from_dict(reference_element_dict)