@jellyfin/sdk
    Preparing search index...

    Interface DisplayPreferencesDto

    Defines the display preferences for any item that supports them (usually Folders).

    DisplayPreferencesDto

    interface DisplayPreferencesDto {
        Client?: string | null;
        CustomPrefs?: { [key: string]: string | null };
        Id?: string | null;
        IndexBy?: string | null;
        PrimaryImageHeight?: number;
        PrimaryImageWidth?: number;
        RememberIndexing?: boolean;
        RememberSorting?: boolean;
        ScrollDirection?: ScrollDirection;
        ShowBackdrop?: boolean;
        ShowSidebar?: boolean;
        SortBy?: string | null;
        SortOrder?: SortOrder;
        ViewType?: string | null;
    }
    Index

    Properties

    Client?: string | null

    Gets or sets the client.

    DisplayPreferencesDto

    CustomPrefs?: { [key: string]: string | null }

    Gets or sets the custom prefs.

    DisplayPreferencesDto

    Id?: string | null

    Gets or sets the user id.

    DisplayPreferencesDto

    IndexBy?: string | null

    Gets or sets the index by.

    DisplayPreferencesDto

    PrimaryImageHeight?: number

    Gets or sets the height of the primary image.

    DisplayPreferencesDto

    PrimaryImageWidth?: number

    Gets or sets the width of the primary image.

    DisplayPreferencesDto

    RememberIndexing?: boolean

    Gets or sets a value indicating whether [remember indexing].

    DisplayPreferencesDto

    RememberSorting?: boolean

    Gets or sets a value indicating whether [remember sorting].

    DisplayPreferencesDto

    ScrollDirection?: ScrollDirection

    DisplayPreferencesDto

    ShowBackdrop?: boolean

    Gets or sets a value indicating whether to show backdrops on this item.

    DisplayPreferencesDto

    ShowSidebar?: boolean

    Gets or sets a value indicating whether [show sidebar].

    DisplayPreferencesDto

    SortBy?: string | null

    Gets or sets the sort by.

    DisplayPreferencesDto

    SortOrder?: SortOrder

    DisplayPreferencesDto

    ViewType?: string | null

    Gets or sets the type of the view.

    DisplayPreferencesDto