Class: Io::Flow::V0::Models::Tracking

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ Tracking

Returns a new instance of Tracking.



22166
22167
22168
22169
22170
22171
22172
22173
22174
22175
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22166

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

#attributesObject (readonly)

Returns the value of attribute attributes.



22164
22165
22166
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22164

def attributes
  @attributes
end

#idObject (readonly)

Returns the value of attribute id.



22164
22165
22166
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22164

def id
  @id
end

#labelsObject (readonly)

Returns the value of attribute labels.



22164
22165
22166
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22164

def labels
  @labels
end

#order_numberObject (readonly)

Returns the value of attribute order_number.



22164
22165
22166
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22164

def order_number
  @order_number
end

#statusObject (readonly)

Returns the value of attribute status.



22164
22165
22166
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22164

def status
  @status
end

#windowObject (readonly)

Returns the value of attribute window.



22164
22165
22166
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22164

def window
  @window
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



22181
22182
22183
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22181

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

#to_hashObject



22185
22186
22187
22188
22189
22190
22191
22192
22193
22194
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22185

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_jsonObject



22177
22178
22179
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 22177

def to_json
  JSON.dump(to_hash)
end