A brief form of a deployed Solution item.

interface ISolutionPrecis {
    folder: string;
    groups: string[];
    id: string;
    items: ISolutionItemPrecis[];
    title: string;
}

Properties

folder: string

Folder containing the deployed Solution

groups: string[]

Ids of groups affiliated with this solution

id: string

The unique ID for this Solution item.

Items contained in this solution

title: string

The title of the item. This is the name that's displayed to users and by which they refer to the item.