Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.31 KB

File metadata and controls

41 lines (32 loc) · 1.31 KB

Collection

A curated collection of datasets, tools, publications and DURs

Properties

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]

Example

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)

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