Class: Io::Flow::V0::Models::ShippingLabelHopSummary
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::ShippingLabelHopSummary
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#cost ⇒ Object
readonly
Returns the value of attribute cost.
-
#lane ⇒ Object
readonly
Returns the value of attribute lane.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ ShippingLabelHopSummary
constructor
A new instance of ShippingLabelHopSummary.
- #to_hash ⇒ Object
- #to_json ⇒ Object
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
#cost ⇒ Object (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 |
#lane ⇒ Object (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_hash ⇒ Object
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_json ⇒ Object
59121 59122 59123 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 59121 def to_json JSON.dump(to_hash) end |