commonMain.org.jellyfin.sdk.model.api.RemoteImageInfo.kt Maven / Gradle / Ivy
// !! 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 - 2025 Weber Informatics LLC | Privacy Policy