Class: Deliveries::Couriers::CorreosExpress::Pickups::Trace::FormatResponse
- Inherits:
-
Object
- Object
- Deliveries::Couriers::CorreosExpress::Pickups::Trace::FormatResponse
- Defined in:
- lib/deliveries/couriers/correos_express/pickups/trace/format_response.rb
Instance Attribute Summary collapse
-
#response ⇒ Object
Returns the value of attribute response.
Instance Method Summary collapse
- #execute ⇒ Object
-
#initialize(response:) ⇒ FormatResponse
constructor
A new instance of FormatResponse.
Constructor Details
#initialize(response:) ⇒ FormatResponse
Returns a new instance of FormatResponse.
11 12 13 |
# File 'lib/deliveries/couriers/correos_express/pickups/trace/format_response.rb', line 11 def initialize(response:) self.response = response end |
Instance Attribute Details
#response ⇒ Object
Returns the value of attribute response.
9 10 11 |
# File 'lib/deliveries/couriers/correos_express/pickups/trace/format_response.rb', line 9 def response @response end |
Instance Method Details
#execute ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 |
# File 'lib/deliveries/couriers/correos_express/pickups/trace/format_response.rb', line 15 def execute tracking_info_params = {} checkpoints = formatted_checkpoints([response[:situaciones]].flatten) tracking_info_params[:status] = checkpoints.last.try(:status) tracking_info_params[:checkpoints] = checkpoints tracking_info_params[:courier_id] = 'correos_express' tracking_info_params[:tracking_code] = response[:recogida] tracking_info_params end |