Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 946 Bytes

MediaCover.md

File metadata and controls

31 lines (22 loc) · 946 Bytes

MediaCover

Properties

Name Type Description Notes
cover_type MediaCoverTypes [optional]
url str [optional]
remote_url str [optional]

Example

from sonarr.models.media_cover import MediaCover

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

# convert the object into a dict
media_cover_dict = media_cover_instance.to_dict()
# create an instance of MediaCover from a dict
media_cover_from_dict = MediaCover.from_dict(media_cover_dict)

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