RemoteImageInfo

Class RemoteImageInfo.

Properties

Name Type Description Notes
provider_name str Gets or sets the name of the provider. [optional]
url str Gets or sets the URL. [optional]
thumbnail_url str Gets or sets a url used for previewing a smaller version. [optional]
height int Gets or sets the height. [optional]
width int Gets or sets the width. [optional]
community_rating float Gets or sets the community rating. [optional]
vote_count int Gets or sets the vote count. [optional]
language str Gets or sets the language. [optional]
type ImageType [optional]
rating_type RatingType [optional]

Example

from jellyfin.generated.api_10_10.models.remote_image_info import RemoteImageInfo

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

# convert the object into a dict
remote_image_info_dict = remote_image_info_instance.to_dict()
# create an instance of RemoteImageInfo from a dict
remote_image_info_from_dict = RemoteImageInfo.from_dict(remote_image_info_dict)

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