Sha256: 10a51d06f2d1be6f0a2e94b1d7e6d843ee174259225f5206199c37015721fac8
Contents?: true
Size: 564 Bytes
Versions: 5
Compression:
Stored size: 564 Bytes
Contents
module Balanced # A Reversal represents a reversal of funds from a Credit. A Credit can have # many Reversals associated with it up to the total amount of the original # Reversal. Funds are returned to your Marketplace's Merchant Account # proportional to the amount of the Reversal. # class Reversal include Balanced::Resource def initialize attributes = {} Balanced::Utils.stringify_keys! attributes unless attributes.has_key? 'uri' attributes['uri'] = self.class.uri end super attributes end end end
Version data entries
5 entries across 5 versions & 1 rubygems