Class: Io::Flow::V0::Models::DeminimisPerItem

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

Overview

De Minimis per item describes rules which require minimum and/or maximum values per item

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 = {}) ⇒ DeminimisPerItem



14607
14608
14609
14610
14611
14612
14613
14614
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14607

def initialize(incoming={})
  super(:discriminator => Deminimis::Types::DEMINIMIS_PER_ITEM)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:currency], 'DeminimisPerItem')
  @currency = HttpClient::Preconditions.assert_class('currency', opts.delete(:currency), String)
  @minimum = (x = opts.delete(:minimum); x.nil? ? nil : HttpClient::Preconditions.assert_class('minimum', HttpClient::Helper.to_big_decimal(x), BigDecimal))
  @maximum = (x = opts.delete(:maximum); x.nil? ? nil : HttpClient::Preconditions.assert_class('maximum', HttpClient::Helper.to_big_decimal(x), BigDecimal))
end

Instance Attribute Details

#currencyObject (readonly)

Returns the value of attribute currency.



14605
14606
14607
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14605

def currency
  @currency
end

#maximumObject (readonly)

Returns the value of attribute maximum.



14605
14606
14607
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14605

def maximum
  @maximum
end

#minimumObject (readonly)

Returns the value of attribute minimum.



14605
14606
14607
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14605

def minimum
  @minimum
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



14620
14621
14622
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14620

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

#subtype_to_hashObject



14624
14625
14626
14627
14628
14629
14630
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14624

def subtype_to_hash
  {
    :currency => currency,
    :minimum => minimum,
    :maximum => maximum
  }
end

#to_jsonObject



14616
14617
14618
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 14616

def to_json
  JSON.dump(to_hash)
end