Sha256: 2e040d19ce2a957067d0ea6f7aa8d913a35b8d98b7814b3aa16ceebc0fc9131f
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
module PagseguroCatcher module Transaction class Base attr_accessor :body def initialize(xml) self.body = Hash.from_xml(xml)["transaction"] self.body.recursive_symbolize_keys! if self.body end def amount @amount ||= PagseguroCatcher::Transaction::Amount.new(self.body) @amount end def [](param) self.body[param.to_sym] end def date self[:date].to_datetime.change(:offset => "-0300") end def last_event_date self[:lastEventDate].to_datetime.change(:offset => "-0300") end def transaction_type TRANSACTION_TYPES[self[:type].to_i] end def transaction_status TRANSACTION_STATUS[self[:status].to_i] end def payment_method_type PAYMENT_TYPES[self[:paymentMethod][:type].to_i] end def payment_method_code PAYMENT_CODES[self[:paymentMethod][:code].to_i] end #TODO - method missing end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pagseguro_catcher-0.0.3 | lib/pagseguro_catcher/transaction/base.rb |