Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.17 KB

AutoTaggingResource.md

File metadata and controls

33 lines (24 loc) · 1.17 KB

AutoTaggingResource

Properties

Name Type Description Notes
id int [optional]
name str [optional]
remove_tags_automatically bool [optional]
tags List[int] [optional]
specifications List[AutoTaggingSpecificationSchema] [optional]

Example

from sonarr.models.auto_tagging_resource import AutoTaggingResource

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

# convert the object into a dict
auto_tagging_resource_dict = auto_tagging_resource_instance.to_dict()
# create an instance of AutoTaggingResource from a dict
auto_tagging_resource_from_dict = AutoTaggingResource.from_dict(auto_tagging_resource_dict)

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