Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 991 Bytes

File metadata and controls

34 lines (25 loc) · 991 Bytes

View

Properties

Name Type Description Notes
id str [optional]
columns List[ViewColumn] [optional]
grid_id str [optional]
grid_status str [optional]
name str [optional]
records List[Record] [optional]

Example

from gridly.models.view import View

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

# convert the object into a dict
view_dict = view_instance.to_dict()
# create an instance of View from a dict
view_from_dict = View.from_dict(view_dict)

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