Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.01 KB

File metadata and controls

34 lines (25 loc) · 1.01 KB

CellChange

One changed spreadsheet cell (old is null for added, new for removed).

Properties

Name Type Description Notes
sheet str
address str
old str
new str
type CellChangeType

Example

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)

[Back to Model list] [Back to API list] [Back to README]