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.
-
#url ⇒ Object
readonly
Returns the value of attribute url.
-
#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.
33913 33914 33915 33916 33917 33918 33919 33920 33921 33922 33923 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33913 def initialize(incoming={}) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:id, :labels, :status, :attributes, :url], '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 } @url = HttpClient::Preconditions.assert_class('url', opts.delete(:url), String) @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.
33911 33912 33913 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33911 def attributes @attributes end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
33911 33912 33913 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33911 def id @id end |
#labels ⇒ Object (readonly)
Returns the value of attribute labels.
33911 33912 33913 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33911 def labels @labels end |
#order_number ⇒ Object (readonly)
Returns the value of attribute order_number.
33911 33912 33913 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33911 def order_number @order_number end |
#status ⇒ Object (readonly)
Returns the value of attribute status.
33911 33912 33913 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33911 def status @status end |
#url ⇒ Object (readonly)
Returns the value of attribute url.
33911 33912 33913 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33911 def url @url end |
#window ⇒ Object (readonly)
Returns the value of attribute window.
33911 33912 33913 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33911 def window @window end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
33929 33930 33931 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33929 def copy(incoming={}) Tracking.new(to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#to_hash ⇒ Object
33933 33934 33935 33936 33937 33938 33939 33940 33941 33942 33943 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33933 def to_hash { :id => id, :labels => labels.map { |o| o.to_hash }, :status => status.value, :attributes => attributes, :url => url, :window => window.nil? ? nil : window.to_hash, :order_number => order_number } end |
#to_json ⇒ Object
33925 33926 33927 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33925 def to_json JSON.dump(to_hash) end |