MovieDetailsDTO

@JsonClass(generateAdapter = true)
data class MovieDetailsDTO(@Json(name = "id") val id: Long, @Json(name = "title") val title: String, @Json(name = "poster_path") val posterPath: String?, @Json(name = "backdrop_path") val backdropPath: String?, @Json(name = "overview") val overview: String?, @Json(name = "release_date") val releaseDate: String?, @Json(name = "vote_average") val voteAverage: Double, @Json(name = "runtime") val runtimeMinutes: Int?, @Json(name = "genres") val genres: List<GenreDTO>?)

Constructors

Link copied to clipboard
constructor(@Json(name = "id") id: Long, @Json(name = "title") title: String, @Json(name = "poster_path") posterPath: String?, @Json(name = "backdrop_path") backdropPath: String?, @Json(name = "overview") overview: String?, @Json(name = "release_date") releaseDate: String?, @Json(name = "vote_average") voteAverage: Double, @Json(name = "runtime") runtimeMinutes: Int?, @Json(name = "genres") genres: List<GenreDTO>?)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val id: Long
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard