stripe-ruby/lib/stripe/resources/source_transaction.rb
helenye-stripe ce8d7ca4cc
Add methods for dynamically referenced constants (#1327)
* Update dynamic constant references

* Manual additionsg

* Fix lint

* Use const_Get

* Remove puts
2024-02-09 17:15:39 -08:00

16 lines
478 B
Ruby

# File generated from our OpenAPI spec
# frozen_string_literal: true
module Stripe
# Some payment methods have no required amount that a customer must send.
# Customers can be instructed to send any amount, and it can be made up of
# multiple transactions. As such, sources can have multiple associated
# transactions.
class SourceTransaction < StripeObject
OBJECT_NAME = "source_transaction"
def self.object_name
"source_transaction"
end
end
end