| 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] |
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)