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.



23178
23179
23180
23181
23182
23183
23184
23185
23186
23187
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23178

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)) })
  @tax_registration_id = (x = opts.delete(:tax_registration_id); x.nil? ? nil : HttpClient::Preconditions.assert_class('tax_registration_id', x, String))
end

Instance Attribute Details

#addressObject (readonly)

Returns the value of attribute address.



23176
23177
23178
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23176

def address
  @address
end

#item_numbersObject (readonly)

Returns the value of attribute item_numbers.



23176
23177
23178
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23176

def item_numbers
  @item_numbers
end

#line_itemsObject (readonly)

Returns the value of attribute line_items.



23176
23177
23178
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23176

def line_items
  @line_items
end

#order_numberObject (readonly)

Returns the value of attribute order_number.



23176
23177
23178
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23176

def order_number
  @order_number
end

#source_addressObject (readonly)

Returns the value of attribute source_address.



23176
23177
23178
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23176

def source_address
  @source_address
end

#tax_registration_idObject (readonly)

Returns the value of attribute tax_registration_id.



23176
23177
23178
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23176

def tax_registration_id
  @tax_registration_id
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



23193
23194
23195
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23193

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

#to_hashObject



23197
23198
23199
23200
23201
23202
23203
23204
23205
23206
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23197

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 },
    :tax_registration_id => tax_registration_id
  }
end

#to_jsonObject



23189
23190
23191
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 23189

def to_json
  JSON.dump(to_hash)
end