Class: Hackle::RemoteConfigValue
- Inherits:
-
Object
- Object
- Hackle::RemoteConfigValue
- Defined in:
- lib/hackle/internal/model/remote_config_parameter.rb
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(id:, raw_value:) ⇒ RemoteConfigValue
constructor
A new instance of RemoteConfigValue.
Constructor Details
#initialize(id:, raw_value:) ⇒ RemoteConfigValue
Returns a new instance of RemoteConfigValue.
71 72 73 74 |
# File 'lib/hackle/internal/model/remote_config_parameter.rb', line 71 def initialize(id:, raw_value:) @id = id @raw_value = raw_value end |
Instance Attribute Details
#id ⇒ Integer
69 70 71 |
# File 'lib/hackle/internal/model/remote_config_parameter.rb', line 69 def id @id end |
#raw_value ⇒ Object
69 |
# File 'lib/hackle/internal/model/remote_config_parameter.rb', line 69 attr_accessor :id, :raw_value |