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

DisplayPreferencesDto

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

Properties

Client?: null | string

Gets or sets the client.

DisplayPreferencesDto

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

Gets or sets the custom prefs.

DisplayPreferencesDto

Id?: null | string

Gets or sets the user id.

DisplayPreferencesDto

IndexBy?: null | string

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?: null | string

Gets or sets the sort by.

DisplayPreferencesDto

SortOrder?: SortOrder

DisplayPreferencesDto

ViewType?: null | string

Gets or sets the type of the view.

DisplayPreferencesDto