| Name |
Type |
Description |
Notes |
| track_file_ids |
List[int] |
|
[optional] |
| quality |
QualityModel |
|
[optional] |
| scene_name |
str |
|
[optional] |
| release_group |
str |
|
[optional] |
from lidarr.models.track_file_list_resource import TrackFileListResource
# TODO update the JSON string below
json = "{}"
# create an instance of TrackFileListResource from a JSON string
track_file_list_resource_instance = TrackFileListResource.from_json(json)
# print the JSON string representation of the object
print(TrackFileListResource.to_json())
# convert the object into a dict
track_file_list_resource_dict = track_file_list_resource_instance.to_dict()
# create an instance of TrackFileListResource from a dict
track_file_list_resource_from_dict = TrackFileListResource.from_dict(track_file_list_resource_dict)
[Back to Model list] [Back to API list] [Back to README]