Class: Io::Flow::V0::Models::DeminimisSimple

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

Overview

De Minimis for most common example which includes a value threshold and rules on what components are used in the duty calculation

Instance Attribute Summary collapse

Attributes inherited from Deminimis

#discriminator

Instance Method Summary collapse

Methods inherited from Deminimis

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ DeminimisSimple

Returns a new instance of DeminimisSimple.



36256
36257
36258
36259
36260
36261
36262
36263
36264
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36256

def initialize(incoming={})
  super(:discriminator => Deminimis::Types::DEMINIMIS_SIMPLE)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:currency, :components], 'DeminimisSimple')
  @value = (x = opts.delete(:value); x.nil? ? nil : HttpClient::Preconditions.assert_class('value', HttpClient::Helper.to_big_decimal(x), BigDecimal))
  @currency = HttpClient::Preconditions.assert_class('currency', opts.delete(:currency), String)
  @components = HttpClient::Preconditions.assert_class('components', opts.delete(:components), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::LevyComponent) ? x : ::Io::Flow::V0::Models::LevyComponent.apply(x)) }
  @minimum = (x = opts.delete(:minimum); x.nil? ? nil : HttpClient::Preconditions.assert_class('minimum', HttpClient::Helper.to_big_decimal(x), BigDecimal))
end

Instance Attribute Details

#componentsObject (readonly)

Returns the value of attribute components.



36254
36255
36256
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36254

def components
  @components
end

#currencyObject (readonly)

Returns the value of attribute currency.



36254
36255
36256
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36254

def currency
  @currency
end

#minimumObject (readonly)

Returns the value of attribute minimum.



36254
36255
36256
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36254

def minimum
  @minimum
end

#valueObject (readonly)

Returns the value of attribute value.



36254
36255
36256
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36254

def value
  @value
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



36270
36271
36272
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36270

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

#subtype_to_hashObject



36274
36275
36276
36277
36278
36279
36280
36281
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36274

def subtype_to_hash
  {
    :value => value.to_f.to_s,
    :currency => currency,
    :components => components.map { |o| o.value },
    :minimum => minimum.to_f.to_s
  }
end

#to_jsonObject



36266
36267
36268
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36266

def to_json
  JSON.dump(to_hash)
end