@jellyfin/sdk
    Preparing search index...

    Interface TvShowsApiGetUpcomingEpisodesRequest

    Request parameters for getUpcomingEpisodes operation in TvShowsApi.

    TvShowsApiGetUpcomingEpisodesRequest

    interface TvShowsApiGetUpcomingEpisodesRequest {
        enableImages?: boolean;
        enableImageTypes?: ImageType[];
        enableUserData?: boolean;
        fields?: ItemFields[];
        imageTypeLimit?: number;
        limit?: number;
        parentId?: string;
        startIndex?: number;
        userId?: string;
    }
    Index

    Properties

    enableImages?: boolean

    Optional. Include image information in output.

    TvShowsApiGetUpcomingEpisodes

    enableImageTypes?: ImageType[]

    Optional. The image types to include in the output.

    TvShowsApiGetUpcomingEpisodes

    enableUserData?: boolean

    Optional. Include user data.

    TvShowsApiGetUpcomingEpisodes

    fields?: ItemFields[]

    Optional. Specify additional fields of information to return in the output.

    TvShowsApiGetUpcomingEpisodes

    imageTypeLimit?: number

    Optional. The max number of images to return, per image type.

    TvShowsApiGetUpcomingEpisodes

    limit?: number

    Optional. The maximum number of records to return.

    TvShowsApiGetUpcomingEpisodes

    parentId?: string

    Optional. Specify this to localize the search to a specific item or folder. Omit to use the root.

    TvShowsApiGetUpcomingEpisodes

    startIndex?: number

    Optional. The record index to start at. All items with a lower index will be dropped from the results.

    TvShowsApiGetUpcomingEpisodes

    userId?: string

    The user id of the user to get the upcoming episodes for.

    TvShowsApiGetUpcomingEpisodes