mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-11-29 00:01:18 -05:00
* 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>
17 lines
420 B
Ruby
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
|