RemoteImageInfo

@Serializable
data class RemoteImageInfo(val providerName: String? = null, val url: String? = null, val thumbnailUrl: String? = null, val height: Int? = null, val width: Int? = null, val communityRating: Double? = null, val voteCount: Int? = null, val language: String? = null, val type: ImageType, val ratingType: RatingType)

Class RemoteImageInfo.

Constructors

Link copied to clipboard
constructor(providerName: String? = null, url: String? = null, thumbnailUrl: String? = null, height: Int? = null, width: Int? = null, communityRating: Double? = null, voteCount: Int? = null, language: String? = null, type: ImageType, ratingType: RatingType)

Properties

Link copied to clipboard
@SerialName(value = "CommunityRating")
val communityRating: Double?

The community rating.

Link copied to clipboard
@SerialName(value = "Height")
val height: Int?

The height.

Link copied to clipboard
@SerialName(value = "Language")
val language: String?

The language.

Link copied to clipboard
@SerialName(value = "ProviderName")
val providerName: String?

The name of the provider.

Link copied to clipboard
@SerialName(value = "RatingType")
val ratingType: RatingType

The type of the rating.

Link copied to clipboard
@SerialName(value = "ThumbnailUrl")
val thumbnailUrl: String?

A url used for previewing a smaller version.

Link copied to clipboard
@SerialName(value = "Type")
val type: ImageType

The type.

Link copied to clipboard
@SerialName(value = "Url")
val url: String?

The URL.

Link copied to clipboard
@SerialName(value = "VoteCount")
val voteCount: Int?

The vote count.

Link copied to clipboard
@SerialName(value = "Width")
val width: Int?

The width.