Class: LaunchDarkly::Interfaces::FlagChange
- Inherits:
-
Object
- Object
- LaunchDarkly::Interfaces::FlagChange
- Defined in:
- lib/ldclient-rb/interfaces.rb
Overview
Change event fired when some aspect of the flag referenced by the key has changed.
Instance Attribute Summary collapse
-
#key ⇒ Object
Returns the value of attribute key.
Instance Method Summary collapse
-
#initialize(key) ⇒ FlagChange
constructor
A new instance of FlagChange.
Constructor Details
#initialize(key) ⇒ FlagChange
Returns a new instance of FlagChange.
247 248 249 |
# File 'lib/ldclient-rb/interfaces.rb', line 247 def initialize(key) @key = key end |
Instance Attribute Details
#key ⇒ Object
Returns the value of attribute key.
244 245 246 |
# File 'lib/ldclient-rb/interfaces.rb', line 244 def key @key end |