| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| path | str | [optional] | |
| size | int | [optional] | |
| modified | datetime | [optional] | |
| date_added | datetime | [optional] | |
| original_file_path | str | [optional] | |
| scene_name | str | [optional] | |
| release_group | str | [optional] | |
| quality | QualityModel | [optional] | |
| indexer_flags | IndexerFlags | [optional] | |
| media_info | MediaInfoModel | [optional] | |
| edition_id | int | [optional] | |
| calibre_id | int | [optional] | |
| part | int | [optional] | |
| author | AuthorLazyLoaded | [optional] | |
| edition | EditionLazyLoaded | [optional] | |
| part_count | int | [optional] |
from readarr.models.book_file import BookFile
# TODO update the JSON string below
json = "{}"
# create an instance of BookFile from a JSON string
book_file_instance = BookFile.from_json(json)
# print the JSON string representation of the object
print(BookFile.to_json())
# convert the object into a dict
book_file_dict = book_file_instance.to_dict()
# create an instance of BookFile from a dict
book_file_from_dict = BookFile.from_dict(book_file_dict)