commonMain.app.moviebase.trakt.model.TraktMoviesModel.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trakt-api-jvm Show documentation
Show all versions of trakt-api-jvm Show documentation
Kotlin Multiplatform library to access the Trakt API.
// ktlint-disable filename
package app.moviebase.trakt.model
import kotlinx.serialization.Serializable
@Serializable
data class TraktMovie(
val runtime: Int? = null,
val ids: TraktItemIds,
)