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

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

Link to this section Summary

Link to this section Types

@type t() :: %Flagsmith.Schemas.Features.Feature{
  created_date: DateTime.t() | nil,
  default_enabled: boolean() | nil,
  description: String.t() | nil,
  id: integer() | nil,
  initial_value: String.t() | nil,
  name: String.t() | nil,
  type: String.t() | nil
}