Class: Io::Flow::V0::Models::Rounding

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ Rounding

Returns a new instance of Rounding.



21158
21159
21160
21161
21162
21163
21164
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21158

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:type, :method, :value], 'Rounding')
  @type = (x = opts.delete(:type); x.is_a?(::Io::Flow::V0::Models::RoundingType) ? x : ::Io::Flow::V0::Models::RoundingType.apply(x))
  @method = (x = opts.delete(:method); x.is_a?(::Io::Flow::V0::Models::RoundingMethod) ? x : ::Io::Flow::V0::Models::RoundingMethod.apply(x))
  @value = HttpClient::Preconditions.assert_class('value', HttpClient::Helper.to_big_decimal(opts.delete(:value)), BigDecimal)
end

Instance Attribute Details

#methodObject (readonly)

Returns the value of attribute method.



21156
21157
21158
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21156

def method
  @method
end

#typeObject (readonly)

Returns the value of attribute type.



21156
21157
21158
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21156

def type
  @type
end

#valueObject (readonly)

Returns the value of attribute value.



21156
21157
21158
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21156

def value
  @value
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



21170
21171
21172
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21170

def copy(incoming={})
  Rounding.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#to_hashObject



21174
21175
21176
21177
21178
21179
21180
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21174

def to_hash
  {
    :type => type.value,
    :method => method.value,
    :value => value
  }
end

#to_jsonObject



21166
21167
21168
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 21166

def to_json
  JSON.dump(to_hash)
end