Skip to content
This repository has been archived by the owner on Aug 18, 2021. It is now read-only.

Latest commit

 

History

History
67 lines (65 loc) · 1.99 KB

File metadata and controls

67 lines (65 loc) · 1.99 KB

DISCOVER

// DISCOVER
// Movie Discover
fun getDiscoverMovie(
    language: String?,
    region: String?,
    sort_by: String?,
    certification_country: String?,
    certification: String?,
    certification_lte: String?,
    certification_gte: String?,
    include_adult: String?,
    include_video: Boolean?,
    page: Int?,
    primary_release_year: Int?,
    primary_release_date_gte: String?,
    primary_release_date_lte: String?,
    release_date_gte: String?,
    release_date_lte: String?,
    with_release_type: Int?,
    year: Int?,
    vote_count_gte: Int?,
    vote_count_lte: Int?,
    vote_average_gte: Double?,
    vote_average_lte: Double?,
    with_cast: String?,
    with_crew: String?,
    with_people: String?,
    with_companies: String?,
    with_genres: String?,
    without_genres: String?,
    with_keywords: String?,
    without_keywords: String?,
    with_runtime_gte: Double?,
    with_runtime_lte: Double?,
    with_original_language: String?,
    callback: MovieResultCallback<Discover<DiscoverMovie>>
)

// DISCOVER
// TV Discover
fun getDiscoverTv(
    language: String?,
    sort_by: String?,
    air_date_gte: String?,
    air_date_lte: String?,
    first_air_date_gte: String?,
    first_air_date_lte: String?,
    first_air_date_year: Int?,
    page: Int?,
    timezone: String?,
    vote_average_gte: Double?,
    vote_count_gte: Int?,
    with_genres: String?,
    with_networks: String?,
    without_genres: String?,
    with_runtime_gte: Double?,
    with_runtime_lte: Double?,
    include_null_first_air_dates: String?,
    with_original_language: String?,
    without_keywords: String?,
    screened_theatrically: String?,
    with_companies: String?,
    with_keywords: String?,
    callback: MovieResultCallback<Discover<DiscoverTv>>
)