A screen with tab details.

interface ScreenWithTab {
    description?: string;
    id?: number;
    name?: string;
    scope?: Scope;
    tab?: ScreenableTab;
}

Properties

description?: string

The description of the screen.

id?: number

The ID of the screen.

name?: string

The name of the screen.

scope?: Scope

The scope of the screen.

The tab for the screen.