@jellyfin/sdk
    Preparing search index...

    Interface LibraryApiGetSimilarMoviesRequest

    Request parameters for getSimilarMovies operation in LibraryApi.

    LibraryApiGetSimilarMoviesRequest

    interface LibraryApiGetSimilarMoviesRequest {
        excludeArtistIds?: string[];
        fields?: ItemFields[];
        itemId: string;
        limit?: number;
        userId?: string;
    }
    Index

    Properties

    excludeArtistIds?: string[]

    Exclude artist ids.

    LibraryApiGetSimilarMovies

    fields?: ItemFields[]

    Optional. Specify additional fields of information to return in the output. This allows multiple, comma delimited. Options: Budget, Chapters, DateCreated, Genres, HomePageUrl, IndexOptions, MediaStreams, Overview, ParentId, Path, People, ProviderIds, PrimaryImageAspectRatio, Revenue, SortName, Studios, Taglines, TrailerUrls.

    LibraryApiGetSimilarMovies

    itemId: string

    The item id.

    LibraryApiGetSimilarMovies

    limit?: number

    Optional. The maximum number of records to return.

    LibraryApiGetSimilarMovies

    userId?: string

    Optional. Filter by user id, and attach user data.

    LibraryApiGetSimilarMovies