Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.18 KB

File metadata and controls

35 lines (26 loc) · 1.18 KB

RetagBookResource

Properties

Name Type Description Notes
id int [optional]
author_id int [optional]
book_id int [optional]
track_numbers List[int] [optional]
book_file_id int [optional]
path str [optional]
changes List[TagDifference] [optional]

Example

from readarr.models.retag_book_resource import RetagBookResource

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

# convert the object into a dict
retag_book_resource_dict = retag_book_resource_instance.to_dict()
# create an instance of RetagBookResource from a dict
retag_book_resource_from_dict = RetagBookResource.from_dict(retag_book_resource_dict)

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