module Payture::Response

Public Class Methods

create( response_hash ) click to toggle source
# File lib/payture/response.rb, line 3
def self.create( response_hash )
  data = response_hash.data.dup rescue response_hash.dup
  data.extend( self )
  data
end