Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.45 KB

File metadata and controls

40 lines (31 loc) · 1.45 KB

BookFileResource

Properties

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]

Example

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)

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