Class: Hackle::RemoteConfigValue

Inherits:
Object
  • Object
show all
Defined in:
lib/hackle/internal/model/remote_config_parameter.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#idInteger

Returns:

  • (Integer)


69
70
71
# File 'lib/hackle/internal/model/remote_config_parameter.rb', line 69

def id
  @id
end

#raw_valueObject

Returns:

  • (Object)


69
# File 'lib/hackle/internal/model/remote_config_parameter.rb', line 69

attr_accessor :id, :raw_value