Class: Io::Flow::V0::Models::LandedCostItem

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

Overview

Tuple of item number, origin (from) country and destination (to) country

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ LandedCostItem

Returns a new instance of LandedCostItem.



36574
36575
36576
36577
36578
36579
36580
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36574

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:number, :origin, :destination], 'LandedCostItem')
  @number = HttpClient::Preconditions.assert_class('number', opts.delete(:number), String)
  @origin = HttpClient::Preconditions.assert_class('origin', opts.delete(:origin), String)
  @destination = HttpClient::Preconditions.assert_class('destination', opts.delete(:destination), String)
end

Instance Attribute Details

#destinationObject (readonly)

Returns the value of attribute destination.



36572
36573
36574
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36572

def destination
  @destination
end

#numberObject (readonly)

Returns the value of attribute number.



36572
36573
36574
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36572

def number
  @number
end

#originObject (readonly)

Returns the value of attribute origin.



36572
36573
36574
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36572

def origin
  @origin
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



36586
36587
36588
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36586

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

#to_hashObject



36590
36591
36592
36593
36594
36595
36596
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36590

def to_hash
  {
    :number => number,
    :origin => origin,
    :destination => destination
  }
end

#to_jsonObject



36582
36583
36584
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 36582

def to_json
  JSON.dump(to_hash)
end