Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.11 KB

File metadata and controls

36 lines (27 loc) · 1.11 KB

Database

Properties

Name Type Description Notes
id str [optional]
name str [optional]
description str [optional]
project_id int [optional]
grids List[Grid] [optional]
views List[View] [optional]
project Project [optional]
groups List[Group] [optional]

Example

from gridly.models.database import Database

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

# convert the object into a dict
database_dict = database_instance.to_dict()
# create an instance of Database from a dict
database_from_dict = Database.from_dict(database_dict)

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