class Stripe::ApplicationFeeRefund

Related guide: [Refunding application fees](stripe.com/docs/connect/destination-charges#refunding-app-fee)
the Stripe account from which the fee was originally collected.
has previously been created but not yet refunded. Funds will be refunded to
`Application Fee Refund` objects allow you to refund an application fee that

def self.retrieve(_id, _api_key = nil)

def self.retrieve(_id, _api_key = nil)
  raise NotImplementedError,
        "Application fee refunds cannot be retrieved without an " \
        "application fee ID. Retrieve an application fee refund using " \
        "`ApplicationFee.retrieve_refund('fee_id', 'refund_id')`"
end

def self.update(_id, _params = nil, _opts = nil)

def self.update(_id, _params = nil, _opts = nil)
  raise NotImplementedError,
        "Application fee refunds cannot be updated without an " \
        "application fee ID. Update an application fee refund using " \
        "`ApplicationFee.update_refund('fee_id', 'refund_id', " \
        "update_params)`"
end

def resource_url

def resource_url
  "#{ApplicationFee.resource_url}/#{CGI.escape(fee)}/refunds" \
  "/#{CGI.escape(id)}"
end