2019-08-27 20:04:02 +10:00

12 lines
244 B
Ruby

# frozen_string_literal: true
# This is for building http responses with Fabricate
# Usage: Fabricate(:customer).to_json
# See: https://stripe.com/docs/api
module DiscourseDonations
class StripeResponse
attr_accessor :to_json
end
end