| Name | Type | Description | Notes |
|---|---|---|---|
| cover_type | MediaCoverTypes | [optional] | |
| url | str | [optional] | |
| remote_url | str | [optional] |
from radarr.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)