mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-06 00:02:18 -04:00
17 lines
516 B
Ruby
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
|