| Name | Type | Description | Notes |
|---|---|---|---|
| id | float | [optional] | |
| label | str | [optional] |
from seerr.models.servarr_tag import ServarrTag
# TODO update the JSON string below
json = "{}"
# create an instance of ServarrTag from a JSON string
servarr_tag_instance = ServarrTag.from_json(json)
# print the JSON string representation of the object
print(ServarrTag.to_json())
# convert the object into a dict
servarr_tag_dict = servarr_tag_instance.to_dict()
# create an instance of ServarrTag from a dict
servarr_tag_from_dict = ServarrTag.from_dict(servarr_tag_dict)