| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| author_id | int | [optional] | |
| book_id | int | [optional] | |
| path | str | [optional] | |
| size | int | [optional] | |
| date_added | datetime | [optional] | |
| quality | QualityModel | [optional] | |
| quality_weight | int | [optional] | |
| indexer_flags | int | [optional] | |
| media_info | MediaInfoResource | [optional] | |
| quality_cutoff_not_met | bool | [optional] | |
| audio_tags | ParsedTrackInfo | [optional] |
from readarr.models.book_file_resource import BookFileResource
# TODO update the JSON string below
json = "{}"
# create an instance of BookFileResource from a JSON string
book_file_resource_instance = BookFileResource.from_json(json)
# print the JSON string representation of the object
print(BookFileResource.to_json())
# convert the object into a dict
book_file_resource_dict = book_file_resource_instance.to_dict()
# create an instance of BookFileResource from a dict
book_file_resource_from_dict = BookFileResource.from_dict(book_file_resource_dict)