mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-06-01 00:00:30 -04:00
14 lines
278 B
Ruby
14 lines
278 B
Ruby
# File generated from our OpenAPI spec
|
|
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
class CheckoutService < StripeService
|
|
attr_reader :sessions
|
|
|
|
def initialize(requestor)
|
|
super
|
|
@sessions = Stripe::Checkout::SessionService.new(@requestor)
|
|
end
|
|
end
|
|
end
|