Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.24 KB

File metadata and controls

33 lines (24 loc) · 1.24 KB

QualityProfileQualityItem

Properties

Name Type Description Notes
id int [optional]
name str [optional]
quality Quality [optional]
items List[QualityProfileQualityItem] [optional]
allowed bool [optional]

Example

from readarr.models.quality_profile_quality_item import QualityProfileQualityItem

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

# convert the object into a dict
quality_profile_quality_item_dict = quality_profile_quality_item_instance.to_dict()
# create an instance of QualityProfileQualityItem from a dict
quality_profile_quality_item_from_dict = QualityProfileQualityItem.from_dict(quality_profile_quality_item_dict)

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