Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.02 KB

File metadata and controls

34 lines (25 loc) · 1.02 KB

Keyword

A keyword record used to tag datasets, tools, collections, DURs and publications

Properties

Name Type Description Notes
id int [optional]
name str [optional]
enabled bool [optional]
created_at datetime [optional]
updated_at datetime [optional]

Example

from gateway_api_sdk.models.keyword import Keyword

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

# convert the object into a dict
keyword_dict = keyword_instance.to_dict()
# create an instance of Keyword from a dict
keyword_from_dict = Keyword.from_dict(keyword_dict)

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