Class: ActiveShipping::CPPWSTrackingResponse

Inherits:
TrackingResponse show all
Includes:
CPPWSErrorResponse
Defined in:
lib/active_shipping/carriers/canada_post_pws.rb

Constant Summary collapse

DELIVERED_EVENT_CODES =
%w(1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1441 1442 1496 1497 1498 1499 5300)

Instance Attribute Summary collapse

Attributes included from CPPWSErrorResponse

#error_code

Attributes inherited from TrackingResponse

#actual_delivery_date, #attempted_delivery_date, #carrier, #carrier_name, #delivery_signature, #destination, #origin, #scheduled_delivery_date, #ship_time, #shipment_events, #shipper_address, #status, #status_code, #status_description, #tracking_number

Attributes inherited from Response

#message, #params, #request, #test, #xml

Instance Method Summary collapse

Methods included from CPPWSErrorResponse

#handle_error

Methods inherited from TrackingResponse

#==, #has_exception?, #is_delivered?, #latest_event

Methods inherited from Response

#success?, #test?

Constructor Details

#initialize(success, message, params = {}, options = {}) ⇒ CPPWSTrackingResponse

Returns a new instance of CPPWSTrackingResponse.



841
842
843
844
845
846
847
848
849
# File 'lib/active_shipping/carriers/canada_post_pws.rb', line 841

def initialize(success, message, params = {}, options = {})
  handle_error(message, options)
  super
  @service_name    = options[:service_name]
  @expected_date   = options[:expected_date]
  @changed_date    = options[:changed_date]
  @change_reason   = options[:change_reason]
  @customer_number = options[:customer_number]
end

Instance Attribute Details

#change_reasonObject (readonly)

Returns the value of attribute change_reason.



839
840
841
# File 'lib/active_shipping/carriers/canada_post_pws.rb', line 839

def change_reason
  @change_reason
end

#changed_dateObject (readonly)

Returns the value of attribute changed_date.



839
840
841
# File 'lib/active_shipping/carriers/canada_post_pws.rb', line 839

def changed_date
  @changed_date
end

#customer_numberObject (readonly)

Returns the value of attribute customer_number.



839
840
841
# File 'lib/active_shipping/carriers/canada_post_pws.rb', line 839

def customer_number
  @customer_number
end

#expected_dateObject (readonly)

Returns the value of attribute expected_date.



839
840
841
# File 'lib/active_shipping/carriers/canada_post_pws.rb', line 839

def expected_date
  @expected_date
end

#service_nameObject (readonly)

Returns the value of attribute service_name.



839
840
841
# File 'lib/active_shipping/carriers/canada_post_pws.rb', line 839

def service_name
  @service_name
end

Instance Method Details

#actual_delivery_timeObject



855
856
857
# File 'lib/active_shipping/carriers/canada_post_pws.rb', line 855

def actual_delivery_time
  delivered_event.time if delivered?
end

#delivered?Boolean

Returns:

  • (Boolean)


851
852
853
# File 'lib/active_shipping/carriers/canada_post_pws.rb', line 851

def delivered?
  !delivered_event.nil?
end