Skip to content

Latest commit

 

History

History
48 lines (36 loc) · 2.68 KB

FeatureFlag.md

File metadata and controls

48 lines (36 loc) · 2.68 KB

FeatureFlag

Properties

Name Type Description Notes
name String A human-friendly name for the feature flag
kind KindEnum Kind of feature flag
description String Description of the feature flag [optional]
key String A unique key used to reference the flag in your code
version Integer Version of the feature flag
creationDate Long
includeInSnippet Boolean Deprecated, use <code>clientSideAvailability</code>. Whether this flag should be made available to the client-side JavaScript SDK [optional]
clientSideAvailability ClientSideAvailability [optional]
variations List<Variation> An array of possible variations for the flag
temporary Boolean Whether the flag is a temporary flag
tags List<String> Tags for the feature flag
links Map<String, Link> The location and content type of related resources
maintainerId String Associated maintainerId for the feature flag [optional]
maintainer MemberSummary [optional]
maintainerTeamKey String The key of the associated team that maintains this feature flag [optional]
maintainerTeam MaintainerTeam [optional]
goalIds List<String> Deprecated, use <code>experiments</code> instead [optional]
experiments ExperimentInfoRep
customProperties Map<String, CustomProperty>
archived Boolean Boolean indicating if the feature flag is archived
archivedDate Long [optional]
deprecated Boolean Boolean indicating if the feature flag is deprecated [optional]
deprecatedDate Long [optional]
defaults Defaults [optional]
purpose String [optional]
migrationSettings FlagMigrationSettingsRep [optional]
environments Map<String, FeatureFlagConfig> Details on the environments for this flag. Only returned if the request is filtered by environment, using the <code>filterEnv</code> query parameter. [optional]

Enum: KindEnum

Name Value
BOOLEAN "boolean"
MULTIVARIATE "multivariate"