Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

TrackedDownloadStatusMessage.md

File metadata and controls

30 lines (21 loc) · 1.1 KB

TrackedDownloadStatusMessage

Properties

Name Type Description Notes
title str [optional]
messages List[str] [optional]

Example

from sonarr.models.tracked_download_status_message import TrackedDownloadStatusMessage

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

# convert the object into a dict
tracked_download_status_message_dict = tracked_download_status_message_instance.to_dict()
# create an instance of TrackedDownloadStatusMessage from a dict
tracked_download_status_message_from_dict = TrackedDownloadStatusMessage.from_dict(tracked_download_status_message_dict)

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