Class: Io::Flow::V0::Models::Tracking
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::Tracking
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Top level tracking information which contains labels. In cases where shipments are re-labeled, you will see multiple labels for each tracking allowing simple access to see where a shipment is - with which carrier and with the local tracking number
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#labels ⇒ Object
readonly
Returns the value of attribute labels.
-
#order_number ⇒ Object
readonly
Returns the value of attribute order_number.
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#window ⇒ Object
readonly
Returns the value of attribute window.
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ Tracking
constructor
A new instance of Tracking.
- #to_hash ⇒ Object
- #to_json ⇒ Object
Constructor Details
#initialize(incoming = {}) ⇒ Tracking
Returns a new instance of Tracking.
26698 26699 26700 26701 26702 26703 26704 26705 26706 26707 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26698 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id, :labels, :status, :attributes], 'Tracking') @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String) @labels = HttpClient::Preconditions.assert_class('labels', opts.delete(:labels), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::TrackingLabel) ? x : ::Io::Flow::V0::Models::TrackingLabel.new(x)) } @status = (x = opts.delete(:status); x.is_a?(::Io::Flow::V0::Models::TrackingStatus) ? x : ::Io::Flow::V0::Models::TrackingStatus.apply(x)) @attributes = HttpClient::Preconditions.assert_class('attributes', opts.delete(:attributes), Hash).inject({}) { |h, d| h[d[0]] = HttpClient::Preconditions.assert_class('attributes', d[1], String); h } @window = (x = opts.delete(:window); x.nil? ? nil : (x = x; x.is_a?(::Io::Flow::V0::Models::DatetimeRange) ? x : ::Io::Flow::V0::Models::DatetimeRange.new(x))) @order_number = (x = opts.delete(:order_number); x.nil? ? nil : HttpClient::Preconditions.assert_class('order_number', x, String)) end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes.
26696 26697 26698 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26696 def attributes @attributes end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
26696 26697 26698 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26696 def id @id end |
#labels ⇒ Object (readonly)
Returns the value of attribute labels.
26696 26697 26698 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26696 def labels @labels end |
#order_number ⇒ Object (readonly)
Returns the value of attribute order_number.
26696 26697 26698 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26696 def order_number @order_number end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
26696 26697 26698 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26696 def status @status end |
#window ⇒ Object (readonly)
Returns the value of attribute window.
26696 26697 26698 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26696 def window @window end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
26713 26714 26715 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26713 def copy(incoming={}) Tracking.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
26717 26718 26719 26720 26721 26722 26723 26724 26725 26726 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26717 def to_hash { :id => id, :labels => labels.map { |o| o.to_hash }, :status => status.value, :attributes => attributes, :window => window.nil? ? nil : window.to_hash, :order_number => order_number } end |
#to_json ⇒ Object
26709 26710 26711 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 26709 def to_json JSON.dump(to_hash) end |