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.



20882
20883
20884
20885
20886
20887
20888
20889
20890
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20882

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::LineItem) ? x : ::Io::Flow::V0::Models::LineItem.new(x)) })
end

Instance Attribute Details

#addressObject (readonly)

Returns the value of attribute address.



20880
20881
20882
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20880

def address
  @address
end

#item_numbersObject (readonly)

Returns the value of attribute item_numbers.



20880
20881
20882
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20880

def item_numbers
  @item_numbers
end

#line_itemsObject (readonly)

Returns the value of attribute line_items.



20880
20881
20882
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20880

def line_items
  @line_items
end

#order_numberObject (readonly)

Returns the value of attribute order_number.



20880
20881
20882
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20880

def order_number
  @order_number
end

#source_addressObject (readonly)

Returns the value of attribute source_address.



20880
20881
20882
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20880

def source_address
  @source_address
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



20896
20897
20898
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20896

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

#to_hashObject



20900
20901
20902
20903
20904
20905
20906
20907
20908
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20900

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



20892
20893
20894
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 20892

def to_json
  JSON.dump(to_hash)
end