Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1 KB

File metadata and controls

34 lines (25 loc) · 1 KB

SetCell

Properties

Name Type Description Notes
column_id str [optional]
dependency_status str [optional]
length_limit int [optional]
referenced_ids List[str] [optional]
source_status str [optional]
value object [optional]

Example

from gridly.models.set_cell import SetCell

# TODO update the JSON string below
json = "{}"
# create an instance of SetCell from a JSON string
set_cell_instance = SetCell.from_json(json)
# print the JSON string representation of the object
print(SetCell.to_json())

# convert the object into a dict
set_cell_dict = set_cell_instance.to_dict()
# create an instance of SetCell from a dict
set_cell_from_dict = SetCell.from_dict(set_cell_dict)

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