| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| path | str | [optional] | |
| name | str | [optional] | |
| size | int | [optional] | |
| author | AuthorResource | [optional] | |
| book | BookResource | [optional] | |
| foreign_edition_id | str | [optional] | |
| quality | QualityModel | [optional] | |
| release_group | str | [optional] | |
| quality_weight | int | [optional] | |
| download_id | str | [optional] | |
| indexer_flags | int | [optional] | |
| rejections | List[Rejection] | [optional] | |
| audio_tags | ParsedTrackInfo | [optional] | |
| additional_file | bool | [optional] | |
| replace_existing_files | bool | [optional] | |
| disable_release_switching | bool | [optional] |
from readarr.models.manual_import_resource import ManualImportResource
# TODO update the JSON string below
json = "{}"
# create an instance of ManualImportResource from a JSON string
manual_import_resource_instance = ManualImportResource.from_json(json)
# print the JSON string representation of the object
print(ManualImportResource.to_json())
# convert the object into a dict
manual_import_resource_dict = manual_import_resource_instance.to_dict()
# create an instance of ManualImportResource from a dict
manual_import_resource_from_dict = ManualImportResource.from_dict(manual_import_resource_dict)