Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.39 KB

File metadata and controls

38 lines (29 loc) · 1.39 KB

MetadataProfileResource

Properties

Name Type Description Notes
id int [optional]
name str [optional]
min_popularity float [optional]
skip_missing_date bool [optional]
skip_missing_isbn bool [optional]
skip_parts_and_sets bool [optional]
skip_series_secondary bool [optional]
allowed_languages str [optional]
min_pages int [optional]
ignored List[str] [optional]

Example

from readarr.models.metadata_profile_resource import MetadataProfileResource

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

# convert the object into a dict
metadata_profile_resource_dict = metadata_profile_resource_instance.to_dict()
# create an instance of MetadataProfileResource from a dict
metadata_profile_resource_from_dict = MetadataProfileResource.from_dict(metadata_profile_resource_dict)

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