stripe-ruby/lib/stripe/services/v2/core_service.rb
2025-03-26 18:43:45 +00:00

20 lines
666 B
Ruby

# File generated from our OpenAPI spec
# frozen_string_literal: true
module Stripe
module V2
class CoreService < StripeService
attr_reader :accounts, :account_links, :event_destinations, :events, :vault
def initialize(requestor)
super(requestor)
@accounts = Stripe::V2::Core::AccountService.new(@requestor)
@account_links = Stripe::V2::Core::AccountLinkService.new(@requestor)
@event_destinations = Stripe::V2::Core::EventDestinationService.new(@requestor)
@events = Stripe::V2::Core::EventService.new(@requestor)
@vault = Stripe::V2::Core::VaultService.new(@requestor)
end
end
end
end