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.
111 112 113 114 115 116 117 |
# File 'lib/ldclient-rb/impl/model/feature_flag.rb', line 111 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)
120 121 122 |
# File 'lib/ldclient-rb/impl/model/feature_flag.rb', line 120 def data @data end |
#failure_result ⇒ LaunchDarkly::EvaluationDetail (readonly)
126 127 128 |
# File 'lib/ldclient-rb/impl/model/feature_flag.rb', line 126 def failure_result @failure_result end |
#key ⇒ String (readonly)
122 123 124 |
# File 'lib/ldclient-rb/impl/model/feature_flag.rb', line 122 def key @key end |
#variation ⇒ Integer (readonly)
124 125 126 |
# File 'lib/ldclient-rb/impl/model/feature_flag.rb', line 124 def variation @variation end |