One changed spreadsheet cell (old is null for added, new for removed).
| Name | Type | Description | Notes |
|---|---|---|---|
| sheet | str | ||
| address | str | ||
| old | str | ||
| new | str | ||
| type | CellChangeType |
from ksapi.models.cell_change import CellChange
# TODO update the JSON string below
json = "{}"
# create an instance of CellChange from a JSON string
cell_change_instance = CellChange.from_json(json)
# print the JSON string representation of the object
print(CellChange.to_json())
# convert the object into a dict
cell_change_dict = cell_change_instance.to_dict()
# create an instance of CellChange from a dict
cell_change_from_dict = CellChange.from_dict(cell_change_dict)