stripe-ruby/lib/stripe/resources/v2/financial_address_credit_simulation.rb
2025-04-22 21:53:04 +00:00

21 lines
714 B
Ruby

# File generated from our OpenAPI spec
# frozen_string_literal: true
module Stripe
module V2
class FinancialAddressCreditSimulation < APIResource
OBJECT_NAME = "financial_address_credit_simulation"
def self.object_name
"financial_address_credit_simulation"
end
# String representing the object's type. Objects of the same type share the same value of the object field.
attr_reader :object
# The status of the request, signifying whether a simulated credit was initiated.
attr_reader :status
# Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
attr_reader :livemode
end
end
end