from ideastatica_rcs_api.models.rcs_project_data import RcsProjectData
# TODO update the JSON string below
json = "{}"
# create an instance of RcsProjectData from a JSON string
rcs_project_data_instance = RcsProjectData.from_json(json)
# print the JSON string representation of the object
print(rcs_project_data_instance.to_json())
# convert the object into a dict
rcs_project_data_dict = rcs_project_data_instance.to_dict()
# create an instance of RcsProjectData from a dict
rcs_project_data_from_dict = RcsProjectData.from_dict(rcs_project_data_dict)