Details of a project feature.

interface ProjectFeature {
    feature?: string;
    imageUri?: string;
    localisedDescription?: string;
    localisedName?: string;
    prerequisites?: string[];
    projectId?: number;
    state?: string;
    toggleLocked?: boolean;
}

Properties

feature?: string

The key of the feature.

imageUri?: string

URI for the image representing the feature.

localisedDescription?: string

Localized display description for the feature.

localisedName?: string

Localized display name for the feature.

prerequisites?: string[]

List of keys of the features required to enable the feature.

projectId?: number

The ID of the project.

state?: string

The state of the feature. When updating the state of a feature, only ENABLED and DISABLED are supported. Responses can contain all values

toggleLocked?: boolean

Whether the state of the feature can be updated.