Sha256: b3662b12615a717bb63a51472e9629fcc5e4416f29a00517f0be4f5a50f6bfca
Contents?: true
Size: 313 Bytes
Versions: 11
Compression:
Stored size: 313 Bytes
Contents
require "omise/list" module Omise class RefundList < List def create(attributes = {}) Refund.new self.class.resource(location, attributes).post(attributes) end def retrieve(id, attributes = {}) Refund.new self.class.resource(location(id), attributes).get(attributes) end end end
Version data entries
11 entries across 11 versions & 1 rubygems