Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 928 Bytes

Quality.md

File metadata and controls

32 lines (23 loc) · 928 Bytes

Quality

Properties

Name Type Description Notes
id int [optional]
name str [optional]
source QualitySource [optional]
resolution int [optional]

Example

from sonarr.models.quality import Quality

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

# convert the object into a dict
quality_dict = quality_instance.to_dict()
# create an instance of Quality from a dict
quality_from_dict = Quality.from_dict(quality_dict)

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