Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

BookFileListResource.md

File metadata and controls

30 lines (21 loc) · 1.03 KB

BookFileListResource

Properties

Name Type Description Notes
book_file_ids List[int] [optional]
quality QualityModel [optional]

Example

from readarr.models.book_file_list_resource import BookFileListResource

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

# convert the object into a dict
book_file_list_resource_dict = book_file_list_resource_instance.to_dict()
# create an instance of BookFileListResource from a dict
book_file_list_resource_from_dict = BookFileListResource.from_dict(book_file_list_resource_dict)

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