Name | Type | Description | Notes |
---|---|---|---|
book_file_ids | List[int] | [optional] | |
quality | QualityModel | [optional] |
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)