Sha256: 1ea1387ea82766fcbdb5dc466d205d221a2f2a704031851ff808ef9ded53d319

Contents?: true

Size: 542 Bytes

Versions: 3

Compression:

Stored size: 542 Bytes

Contents

module ActiveMerchant #:nodoc:
  module Shipping
    
    class ShipmentConfirmResponse < Response
      
      attr_reader :digest
      attr_reader :identification_number
      attr_reader :total_price
      attr_reader :currency
      
      def initialize(success, message, params = {}, options = {})
        @identification_number = options[:identification_number]
        @digest = options[:digest]
        @total_price = options[:total_price]
        @currency = options[:currency]
        super
      end
      
    end
    
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rclements_active_shipping-0.9.15 lib/active_shipping/shipping/shipment_confirm_response.rb
rclements_active_shipping-0.9.14 lib/active_shipping/shipping/shipment_confirm_response.rb
rclements_active_shipping-0.9.13 lib/active_shipping/shipping/shipment_confirm_response.rb