Sha256: 45cccb35d4820ac1fa4bfad5c7b6d60278f6950b070af2cb803f935c1275979e
Contents?: true
Size: 452 Bytes
Versions: 24
Compression:
Stored size: 452 Bytes
Contents
module Stripe class ApplicationFeeRefund < APIResource include Stripe::APIOperations::Update include Stripe::APIOperations::List def url "#{ApplicationFee.url}/#{CGI.escape(fee)}/refunds/#{CGI.escape(id)}" end def self.retrieve(id, api_key=nil) raise NotImplementedError.new("Refunds cannot be retrieved without an application fee ID. Retrieve a refund using appfee.refunds.retrieve('refund_id')") end end end
Version data entries
24 entries across 24 versions & 1 rubygems