Class: Io::Flow::V0::Models::HarmonizedLandedCostForm

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

Overview

Allows calculation of duty and tax for multiple items in one API call for items going to a specific destination country

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ HarmonizedLandedCostForm

Returns a new instance of HarmonizedLandedCostForm.



20533
20534
20535
20536
20537
20538
20539
20540
20541
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20533

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:address, :item_numbers], 'HarmonizedLandedCostForm')
  @address = (x = opts.delete(:address); x.is_a?(::Io::Flow::V0::Models::Address) ? x : ::Io::Flow::V0::Models::Address.new(x))
  @item_numbers = HttpClient::Preconditions.assert_class('item_numbers', opts.delete(:item_numbers), Array).map { |v| HttpClient::Preconditions.assert_class('item_numbers', v, String) }
  @source_address = (x = opts.delete(:source_address); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::Address) ? x : ::Io::Flow::V0::Models::Address.new(x)))
  @order_number = (x = opts.delete(:order_number); x.nil? ? nil : HttpClient::Preconditions.assert_class('order_number', x, String))
  @line_items = (x = opts.delete(:line_items); x.nil? ? nil : HttpClient::Preconditions.assert_class('line_items', x, Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::LineItemForm) ? x : ::Io::Flow::V0::Models::LineItemForm.new(x)) })
end

Instance Attribute Details

#addressObject (readonly)

Returns the value of attribute address.



20531
20532
20533
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20531

def address
  @address
end

#item_numbersObject (readonly)

Returns the value of attribute item_numbers.



20531
20532
20533
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20531

def item_numbers
  @item_numbers
end

#line_itemsObject (readonly)

Returns the value of attribute line_items.



20531
20532
20533
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20531

def line_items
  @line_items
end

#order_numberObject (readonly)

Returns the value of attribute order_number.



20531
20532
20533
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20531

def order_number
  @order_number
end

#source_addressObject (readonly)

Returns the value of attribute source_address.



20531
20532
20533
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20531

def source_address
  @source_address
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



20547
20548
20549
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20547

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

#to_hashObject



20551
20552
20553
20554
20555
20556
20557
20558
20559
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20551

def to_hash
  {
    :address => address.to_hash,
    :item_numbers => item_numbers,
    :source_address => source_address.nil? ? nil : source_address.to_hash,
    :order_number => order_number,
    :line_items => line_items.nil? ? nil : line_items.map { |o| o.to_hash }
  }
end

#to_jsonObject



20543
20544
20545
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20543

def to_json
  JSON.dump(to_hash)
end