Class: Io::Flow::V0::Models::ShippingLabelHopSummary

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 = {}) ⇒ ShippingLabelHopSummary

Returns a new instance of ShippingLabelHopSummary.



59114
59115
59116
59117
59118
59119
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 59114

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:lane, :cost], 'ShippingLabelHopSummary')
  @lane = (x = opts.delete(:lane); x.is_a?(::Io::Flow::V0::Models::ShippingLabelLaneSummary) ? x : ::Io::Flow::V0::Models::ShippingLabelLaneSummary.new(x))
  @cost = (x = opts.delete(:cost); x.is_a?(::Io::Flow::V0::Models::Money) ? x : ::Io::Flow::V0::Models::Money.new(x))
end

Instance Attribute Details

#costObject (readonly)

Returns the value of attribute cost.



59112
59113
59114
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 59112

def cost
  @cost
end

#laneObject (readonly)

Returns the value of attribute lane.



59112
59113
59114
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 59112

def lane
  @lane
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



59125
59126
59127
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 59125

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

#to_hashObject



59129
59130
59131
59132
59133
59134
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 59129

def to_hash
  {
    :lane => lane.to_hash,
    :cost => cost.to_hash
  }
end

#to_jsonObject



59121
59122
59123
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 59121

def to_json
  JSON.dump(to_hash)
end