Represents a generic, owner-scoped user area (the raw primitive). Application-managed areas (Personal Collections, Starred, Recent) are excluded from this surface.

interface IUserArea {
    comment?: string;
    data?: string;
    id?: number;
    name?: string;
}

Implemented by

Properties

Properties

comment?: string

An optional comment associated with the user area.

data?: string

An optional opaque application-defined data string associated with the user area.

id?: number

The ID of the user area.

name?: string

The name of the user area.