Sha256: fcf69a5c2c7d123c06a845d63a988a8aa4eb364d7cbc0f94ad7f9babd5f950d9

Contents?: true

Size: 393 Bytes

Versions: 10

Compression:

Stored size: 393 Bytes

Contents

module ActiveMerchant #:nodoc:
  module Shipping
    
    class ShippingResponse < Response
      attr_reader :shipping_id # string
      attr_reader :tracking_number # string
      
      def initialize(success, message, params = {}, options = {})
        @shipping_id = options[:shipping_id]
        @tracking_number = options[:tracking_number]
        super
      end
    end
    
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
active_shipping-0.12.4 lib/active_shipping/shipping/shipping_response.rb
active_shipping-0.12.3 lib/active_shipping/shipping/shipping_response.rb
active_shipping-0.12.2 lib/active_shipping/shipping/shipping_response.rb
active_shipping-0.12.1 lib/active_shipping/shipping/shipping_response.rb
active_shipping-0.12.0 lib/active_shipping/shipping/shipping_response.rb
active_shipping-0.11.2 lib/active_shipping/shipping/shipping_response.rb
active_shipping-0.11.1 lib/active_shipping/shipping/shipping_response.rb
active_shipping-0.11.0 lib/active_shipping/shipping/shipping_response.rb
active_shipping-0.10.1 lib/active_shipping/shipping/shipping_response.rb
active_shipping-0.10.0 lib/active_shipping/shipping/shipping_response.rb