Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.69 KB

File metadata and controls

44 lines (35 loc) · 1.69 KB

TrackFileResource

Properties

Name Type Description Notes
id int [optional]
artist_id int [optional]
album_id int [optional]
path str [optional]
size int [optional]
date_added datetime [optional]
scene_name str [optional]
release_group str [optional]
quality QualityModel [optional]
quality_weight int [optional]
custom_formats List[CustomFormatResource] [optional]
custom_format_score int [optional]
indexer_flags int [optional]
media_info MediaInfoResource [optional]
quality_cutoff_not_met bool [optional]
audio_tags ParsedTrackInfo [optional]

Example

from lidarr.models.track_file_resource import TrackFileResource

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

# convert the object into a dict
track_file_resource_dict = track_file_resource_instance.to_dict()
# create an instance of TrackFileResource from a dict
track_file_resource_from_dict = TrackFileResource.from_dict(track_file_resource_dict)

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