from ideastatica_rcs_api.models.rcs_project import RcsProject
# TODO update the JSON string below
json = "{}"
# create an instance of RcsProject from a JSON string
rcs_project_instance = RcsProject.from_json(json)
# print the JSON string representation of the object
print(RcsProject.to_json())
# convert the object into a dict
rcs_project_dict = rcs_project_instance.to_dict()
# create an instance of RcsProject from a dict
rcs_project_from_dict = RcsProject.from_dict(rcs_project_dict)