from ideastatica_connection_api.models.pin_grid import PinGrid
# TODO update the JSON string below
json = "{}"
# create an instance of PinGrid from a JSON string
pin_grid_instance = PinGrid.from_json(json)
# print the JSON string representation of the object
print(pin_grid_instance.to_json())
# convert the object into a dict
pin_grid_dict = pin_grid_instance.to_dict()
# create an instance of PinGrid from a dict
pin_grid_from_dict = PinGrid.from_dict(pin_grid_dict)