| Name | Type | Description | Notes |
|---|---|---|---|
| id | float | [optional] | |
| name | str | [optional] |
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)