@jellyfin/sdk
    Preparing search index...

    Interface LibraryApiGetItemCollectionsRequest

    Request parameters for getItemCollections operation in LibraryApi.

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

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

    itemId: string

    The item id.

    limit?: number

    Optional. The maximum number of records to return.

    startIndex?: number

    Optional. The index of the first record in the output.

    userId?: string

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