Sha256: fd924f531f119c46f6ff5caa8e54e0ce72a1320aa269697767c2128fac8d364f
Contents?: true
Size: 299 Bytes
Versions: 18
Compression:
Stored size: 299 Bytes
Contents
module Spreedly class AuthPurchase < GatewayTransaction field :currency_code field :amount, type: :integer attr_reader :payment_method def initialize(xml_doc) super @payment_method = PaymentMethod.new_from(xml_doc.at_xpath('.//payment_method')) end end end
Version data entries
18 entries across 18 versions & 1 rubygems