Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 823 Bytes

File metadata and controls

30 lines (21 loc) · 823 Bytes

Keyword

Properties

Name Type Description Notes
id float [optional]
name str [optional]

Example

from overseerr.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]