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.



33404
33405
33406
33407
33408
33409
33410
33411
33412
33413
33414
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33404

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

#attributesObject (readonly)

Returns the value of attribute attributes.



33402
33403
33404
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33402

def attributes
  @attributes
end

#idObject (readonly)

Returns the value of attribute id.



33402
33403
33404
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33402

def id
  @id
end

#labelsObject (readonly)

Returns the value of attribute labels.



33402
33403
33404
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33402

def labels
  @labels
end

#order_numberObject (readonly)

Returns the value of attribute order_number.



33402
33403
33404
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33402

def order_number
  @order_number
end

#statusObject (readonly)

Returns the value of attribute status.



33402
33403
33404
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33402

def status
  @status
end

#urlObject (readonly)

Returns the value of attribute url.



33402
33403
33404
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33402

def url
  @url
end

#windowObject (readonly)

Returns the value of attribute window.



33402
33403
33404
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33402

def window
  @window
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



33420
33421
33422
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33420

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

#to_hashObject



33424
33425
33426
33427
33428
33429
33430
33431
33432
33433
33434
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33424

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_jsonObject



33416
33417
33418
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 33416

def to_json
  JSON.dump(to_hash)
end