mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
17 lines
409 B
Ruby
17 lines
409 B
Ruby
# File generated from our OpenAPI spec
|
|
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
module V2
|
|
class CoreService < StripeService
|
|
attr_reader :event_destinations, :events
|
|
|
|
def initialize(requestor)
|
|
super
|
|
@event_destinations = Stripe::V2::Core::EventDestinationService.new(@requestor)
|
|
@events = Stripe::V2::Core::EventService.new(@requestor)
|
|
end
|
|
end
|
|
end
|
|
end
|