Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 921 Bytes

File metadata and controls

31 lines (22 loc) · 921 Bytes

CreateView

Properties

Name Type Description Notes
name str
grid_id str
columns List[AddViewColumn] [optional]

Example

from gridly.models.create_view import CreateView

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

# convert the object into a dict
create_view_dict = create_view_instance.to_dict()
# create an instance of CreateView from a dict
create_view_from_dict = CreateView.from_dict(create_view_dict)

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