All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.org.jellyfin.sdk.model.api.RemoteImageInfo.kt Maven / Gradle / Ivy

There is a newer version: 1.5.5
Show newest version
// !!        WARNING
// !! DO NOT EDIT THIS FILE
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.sdk.model.api

import kotlin.Double
import kotlin.Int
import kotlin.String
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

/**
 * Class RemoteImageInfo.
 */
@Serializable
public data class RemoteImageInfo(
	/**
	 * The name of the provider.
	 */
	@SerialName("ProviderName")
	public val providerName: String? = null,
	/**
	 * The URL.
	 */
	@SerialName("Url")
	public val url: String? = null,
	/**
	 * A url used for previewing a smaller version.
	 */
	@SerialName("ThumbnailUrl")
	public val thumbnailUrl: String? = null,
	/**
	 * The height.
	 */
	@SerialName("Height")
	public val height: Int? = null,
	/**
	 * The width.
	 */
	@SerialName("Width")
	public val width: Int? = null,
	/**
	 * The community rating.
	 */
	@SerialName("CommunityRating")
	public val communityRating: Double? = null,
	/**
	 * The vote count.
	 */
	@SerialName("VoteCount")
	public val voteCount: Int? = null,
	/**
	 * The language.
	 */
	@SerialName("Language")
	public val language: String? = null,
	/**
	 * The type.
	 */
	@SerialName("Type")
	public val type: ImageType,
	/**
	 * The type of the rating.
	 */
	@SerialName("RatingType")
	public val ratingType: RatingType,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy