stripe-ruby/lib/stripe/services/v2/core_service.rb
stripe-openapi[bot] 484f9741c5
Update generated code (#1472)
* Update generated code for v1317

* Update generated code for v1318

* Update generated code for v1318

---------

Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
Co-authored-by: prathmesh-stripe <165320323+prathmesh-stripe@users.noreply.github.com>
2024-10-29 10:12:19 -07:00

17 lines
420 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(requestor)
@event_destinations = Stripe::V2::Core::EventDestinationService.new(@requestor)
@events = Stripe::V2::Core::EventService.new(@requestor)
end
end
end
end