Class: LaunchDarkly::Impl::Model::Prerequisite
- Inherits:
-
Object
- Object
- LaunchDarkly::Impl::Model::Prerequisite
- Defined in:
- lib/ldclient-rb/impl/model/feature_flag.rb
Overview
Instance Attribute Summary collapse
- #data ⇒ Hash readonly
- #failure_result ⇒ LaunchDarkly::EvaluationDetail readonly
- #key ⇒ String readonly
- #variation ⇒ Integer readonly
Instance Method Summary collapse
-
#initialize(data, flag) ⇒ Prerequisite
constructor
A new instance of Prerequisite.
Constructor Details
#initialize(data, flag) ⇒ Prerequisite
Returns a new instance of Prerequisite.
121 122 123 124 125 126 127 |
# File 'lib/ldclient-rb/impl/model/feature_flag.rb', line 121 def initialize(data, flag) @data = data @key = data[:key] @variation = data[:variation] @failure_result = EvaluatorHelpers.evaluation_detail_for_off_variation(flag, EvaluationReason::prerequisite_failed(@key)) end |
Instance Attribute Details
#data ⇒ Hash (readonly)
130 131 132 |
# File 'lib/ldclient-rb/impl/model/feature_flag.rb', line 130 def data @data end |
#failure_result ⇒ LaunchDarkly::EvaluationDetail (readonly)
136 137 138 |
# File 'lib/ldclient-rb/impl/model/feature_flag.rb', line 136 def failure_result @failure_result end |
#key ⇒ String (readonly)
132 133 134 |
# File 'lib/ldclient-rb/impl/model/feature_flag.rb', line 132 def key @key end |
#variation ⇒ Integer (readonly)
134 135 136 |
# File 'lib/ldclient-rb/impl/model/feature_flag.rb', line 134 def variation @variation end |