Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.65 KB

File metadata and controls

41 lines (32 loc) · 1.65 KB

CellChange

One changed spreadsheet cell (old is null for added, new for removed). old/new are the displayed values (cached result for a formula cell); *_formula carry the formula text so a formula edit is visible even when the computed value is unchanged. formatting_changed flags a bold/colour/ number-format change on an otherwise unchanged cell.

Properties

Name Type Description Notes
sheet str
address str
old str
new str
type CellChangeType
old_formula str [optional]
new_formula str [optional]
formula_changed bool [optional] [default to False]
formatting_changed bool [optional] [default to False]
comment_changed bool [optional] [default to False]
old_comment str [optional]
new_comment str [optional]

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]