Class to represent favorite entry.

interface FavoriteItem {
    data?: string;
    id?: string;
    name?: string;
    type?: string;
}

Properties

Properties

data?: string

Application specific data for the entry.

id?: string

Unique Id of the entry.

name?: string

Display text for favorite entry.

type?: string

Application specific favorite entry type. Empty or Null represents that Favorite item is a Folder.