Class: Io::Flow::V0::Models::TrackingLabel

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Overview

Represents a specific label being tracked as part of the tracking bucket

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(incoming = {}) ⇒ TrackingLabel

Returns a new instance of TrackingLabel.



66336
66337
66338
66339
66340
66341
66342
66343
66344
66345
66346
66347
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66336

def initialize(incoming={})
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:id, :carrier, :carrier_tracking_number, :events, :status, :timestamp], 'TrackingLabel')
  @id = HttpClient::Preconditions.assert_class('id', opts.delete(:id), String)
  @carrier = HttpClient::Preconditions.assert_class('carrier', opts.delete(:carrier), String)
  @carrier_tracking_number = HttpClient::Preconditions.assert_class('carrier_tracking_number', opts.delete(:carrier_tracking_number), String)
  @events = HttpClient::Preconditions.assert_class('events', opts.delete(:events), Array).map { |v| (x = v; x.is_a?(::Io::Flow::V0::Models::TrackingEvent) ? x : ::Io::Flow::V0::Models::TrackingEvent.new(x)) }
  @status = (x = opts.delete(:status); x.is_a?(::Io::Flow::V0::Models::TrackingStatus) ? x : ::Io::Flow::V0::Models::TrackingStatus.apply(x))
  @timestamp = HttpClient::Preconditions.assert_class('timestamp', HttpClient::Helper.to_date_time_iso8601(opts.delete(:timestamp)), DateTime)
  @delivery_estimate = (x = opts.delete(:delivery_estimate); x.nil? ? nil : HttpClient::Preconditions.assert_class('delivery_estimate', HttpClient::Helper.to_date_time_iso8601(x), DateTime))
  @description = (x = opts.delete(:description); x.nil? ? nil : HttpClient::Preconditions.assert_class('description', x, String))
end

Instance Attribute Details

#carrierObject (readonly)

Returns the value of attribute carrier.



66334
66335
66336
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66334

def carrier
  @carrier
end

#carrier_tracking_numberObject (readonly)

Returns the value of attribute carrier_tracking_number.



66334
66335
66336
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66334

def carrier_tracking_number
  @carrier_tracking_number
end

#delivery_estimateObject (readonly)

Returns the value of attribute delivery_estimate.



66334
66335
66336
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66334

def delivery_estimate
  @delivery_estimate
end

#descriptionObject (readonly)

Returns the value of attribute description.



66334
66335
66336
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66334

def description
  @description
end

#eventsObject (readonly)

Returns the value of attribute events.



66334
66335
66336
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66334

def events
  @events
end

#idObject (readonly)

Returns the value of attribute id.



66334
66335
66336
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66334

def id
  @id
end

#statusObject (readonly)

Returns the value of attribute status.



66334
66335
66336
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66334

def status
  @status
end

#timestampObject (readonly)

Returns the value of attribute timestamp.



66334
66335
66336
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66334

def timestamp
  @timestamp
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



66353
66354
66355
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66353

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

#to_hashObject



66357
66358
66359
66360
66361
66362
66363
66364
66365
66366
66367
66368
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66357

def to_hash
  {
    :id => id,
    :carrier => carrier,
    :carrier_tracking_number => carrier_tracking_number,
    :events => events.map { |o| o.to_hash },
    :status => status.value,
    :timestamp => timestamp,
    :delivery_estimate => delivery_estimate,
    :description => description
  }
end

#to_jsonObject



66349
66350
66351
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 66349

def to_json
  JSON.dump(to_hash)
end