Container for a request to toggle the state of the feature to ENABLED or DISABLED.

interface ToggleFeatureForProject {
    featureKey: string;
    projectIdOrKey: string;
    state?: "ENABLED" | "DISABLED" | "COMING_SOON";
}

Hierarchy (view full)

Properties

featureKey: string

The key of the feature.

projectIdOrKey: string

The ID or (case-sensitive) key of the project.

state?: "ENABLED" | "DISABLED" | "COMING_SOON"

The new state for the feature