Class: Io::Flow::V0::Models::RatecardEstimateForm

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ RatecardEstimateForm

Returns a new instance of RatecardEstimateForm.



54700
54701
54702
54703
54704
54705
54706
54707
54708
54709
54710
54711
54712
54713
54714
54715
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54700

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:origin_address, :destination_address], 'RatecardEstimateForm')
  @origin_address = (x = opts.delete(:origin_address); x.is_a?(::Io::Flow::V0::Models::Address) ? x : ::Io::Flow::V0::Models::Address.new(x))
  @destination_address = (x = opts.delete(:destination_address); x.is_a?(::Io::Flow::V0::Models::Address) ? x : ::Io::Flow::V0::Models::Address.new(x))
  @weight_unit = (x = opts.delete(:weight_unit); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::UnitOfMeasurement) ? x : ::Io::Flow::V0::Models::UnitOfMeasurement.apply(x)))
  @distance_unit = (x = opts.delete(:distance_unit); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::UnitOfMeasurement) ? x : ::Io::Flow::V0::Models::UnitOfMeasurement.apply(x)))
  @service = (x = opts.delete(:service); x.nil? ? nil : HttpClient::Preconditions.assert_class('service', x, String))
  @weight = (x = opts.delete(:weight); x.nil? ? nil : HttpClient::Preconditions.assert_class('weight', x, Numeric))
  @length = (x = opts.delete(:length); x.nil? ? nil : HttpClient::Preconditions.assert_class('length', x, Numeric))
  @width = (x = opts.delete(:width); x.nil? ? nil : HttpClient::Preconditions.assert_class('width', x, Numeric))
  @depth = (x = opts.delete(:depth); x.nil? ? nil : HttpClient::Preconditions.assert_class('depth', x, Numeric))
  @delivered_duty = (x = opts.delete(:delivered_duty); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::DeliveredDuty) ? x : ::Io::Flow::V0::Models::DeliveredDuty.apply(x)))
  @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)) })
  @center_id = (x = opts.delete(:center_id); x.nil? ? nil : HttpClient::Preconditions.assert_class('center_id', x, String))
end

Instance Attribute Details

#center_idObject (readonly)

Returns the value of attribute center_id.



54698
54699
54700
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54698

def center_id
  @center_id
end

#delivered_dutyObject (readonly)

Returns the value of attribute delivered_duty.



54698
54699
54700
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54698

def delivered_duty
  @delivered_duty
end

#depthObject (readonly)

Returns the value of attribute depth.



54698
54699
54700
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54698

def depth
  @depth
end

#destination_addressObject (readonly)

Returns the value of attribute destination_address.



54698
54699
54700
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54698

def destination_address
  @destination_address
end

#distance_unitObject (readonly)

Returns the value of attribute distance_unit.



54698
54699
54700
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54698

def distance_unit
  @distance_unit
end

#lengthObject (readonly)

Returns the value of attribute length.



54698
54699
54700
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54698

def length
  @length
end

#line_itemsObject (readonly)

Returns the value of attribute line_items.



54698
54699
54700
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54698

def line_items
  @line_items
end

#origin_addressObject (readonly)

Returns the value of attribute origin_address.



54698
54699
54700
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54698

def origin_address
  @origin_address
end

#serviceObject (readonly)

Returns the value of attribute service.



54698
54699
54700
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54698

def service
  @service
end

#weightObject (readonly)

Returns the value of attribute weight.



54698
54699
54700
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54698

def weight
  @weight
end

#weight_unitObject (readonly)

Returns the value of attribute weight_unit.



54698
54699
54700
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54698

def weight_unit
  @weight_unit
end

#widthObject (readonly)

Returns the value of attribute width.



54698
54699
54700
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54698

def width
  @width
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



54721
54722
54723
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54721

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

#to_hashObject



54725
54726
54727
54728
54729
54730
54731
54732
54733
54734
54735
54736
54737
54738
54739
54740
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54725

def to_hash
  {
    :origin_address => origin_address.to_hash,
    :destination_address => destination_address.to_hash,
    :weight_unit => weight_unit.nil? ? nil : weight_unit.value,
    :distance_unit => distance_unit.nil? ? nil : distance_unit.value,
    :service => service,
    :weight => weight,
    :length => length,
    :width => width,
    :depth => depth,
    :delivered_duty => delivered_duty.nil? ? nil : delivered_duty.value,
    :line_items => line_items.nil? ? nil : line_items.map { |o| o.to_hash },
    :center_id => center_id
  }
end

#to_jsonObject



54717
54718
54719
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 54717

def to_json
  JSON.dump(to_hash)
end