Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.39 KB

QualityProfileResource.md

File metadata and controls

36 lines (27 loc) · 1.39 KB

QualityProfileResource

Properties

Name Type Description Notes
id int [optional]
name str [optional]
upgrade_allowed bool [optional]
cutoff int [optional]
items List[QualityProfileQualityItemResource] [optional]
min_format_score int [optional]
cutoff_format_score int [optional]
format_items List[ProfileFormatItemResource] [optional]

Example

from lidarr.models.quality_profile_resource import QualityProfileResource

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

# convert the object into a dict
quality_profile_resource_dict = quality_profile_resource_instance.to_dict()
# create an instance of QualityProfileResource from a dict
quality_profile_resource_from_dict = QualityProfileResource.from_dict(quality_profile_resource_dict)

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