stripe-ruby/lib/stripe/services/v2_services.rb
2025-03-26 18:24:46 +00:00

17 lines
516 B
Ruby

# File generated from our OpenAPI spec
# frozen_string_literal: true
module Stripe
class V2Services < StripeService
attr_reader :core, :money_management, :billing, :test_helpers
def initialize(requestor)
super(requestor)
@core = Stripe::V2::CoreService.new(@requestor)
@money_management = Stripe::V2::MoneyManagementService.new(@requestor)
@billing = Stripe::V2::BillingService.new(@requestor)
@test_helpers = Stripe::V2::TestHelperService.new(@requestor)
end
end
end