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

Ecto schema representing a Flagsmith full feature state definition (as represented in the environment definition).

Link to this section Summary

Link to this section Types

@type t() :: %Flagsmith.Schemas.Environment.FeatureState{
  django_id: integer() | nil,
  enabled: boolean() | nil,
  feature: Flagsmith.Schemas.Environment.Feature.t() | nil,
  feature_segment:
    Flagsmith.Schemas.Environment.FeatureState.FeatureSegment.t() | nil,
  feature_state_value: Flagsmith.Schemas.Types.AnyOf.t() | nil,
  featurestate_uuid: binary() | nil,
  multivariate_feature_state_values: [
    Flagsmith.Schemas.Environment.MultivariateFeatureStateValue.t()
  ]
}