A curated collection of datasets, tools, publications and DURs
| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| name | str | [optional] | |
| description | str | [optional] | |
| image_link | str | [optional] | |
| enabled | bool | [optional] | |
| keywords | str | [optional] | |
| public | bool | [optional] | |
| counter | int | [optional] | |
| status | str | [optional] | |
| team_id | int | [optional] | |
| created_at | datetime | [optional] | |
| updated_at | datetime | [optional] |
from gateway_api_sdk.models.collection import Collection
# TODO update the JSON string below
json = "{}"
# create an instance of Collection from a JSON string
collection_instance = Collection.from_json(json)
# print the JSON string representation of the object
print(Collection.to_json())
# convert the object into a dict
collection_dict = collection_instance.to_dict()
# create an instance of Collection from a dict
collection_from_dict = Collection.from_dict(collection_dict)