toggle menu
Moove Documentation
androidJvm
switch theme
search in API
movies
/
com.moove.movies.domain.model
Package-level
declarations
Types
Types
Genre
Link copied to clipboard
data
class
Genre
(
val
id
:
Long
,
val
name
:
String
)
Movie
Details
Link copied to clipboard
data
class
MovieDetails
(
val
id
:
Long
,
val
title
:
String
,
val
posterPath
:
String
?
,
val
backdropPath
:
String
?
,
val
overview
:
String
,
val
releaseDate
:
LocalDate
?
,
val
rating
:
Float
,
val
runtimeMinutes
:
Int
?
,
val
genres
:
List
<
Genre
>
)
Movie
Summary
Link copied to clipboard
data
class
MovieSummary
(
val
id
:
Long
,
val
title
:
String
,
val
posterPath
:
String
?
,
val
rating
:
Float
,
val
releaseDate
:
LocalDate
?
)