View Source Flagsmith.Schemas.Features.FeatureState (flagsmith_engine v2.1.0)

Ecto schema representing a Flagsmith base feature state definition. This differs from the Flagsmith.Schemas.Environment.FeatureState.t/0 in the fields that make it up.

Link to this section Summary

Link to this section Types

@type t() :: %Flagsmith.Schemas.Features.FeatureState{
  enabled: boolean() | nil,
  environment: integer() | nil,
  feature: Flagsmith.Schemas.Features.Feature.t() | nil,
  feature_segment: integer() | nil,
  feature_state_value: Flagsmith.Schemas.Types.AnyOf.t() | nil,
  id: integer() | nil,
  identity: integer() | nil
}