mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-12-09 00:01:53 -05:00
10 lines
179 B
Ruby
10 lines
179 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
class CheckoutSession < APIResource
|
|
extend Stripe::APIOperations::Create
|
|
|
|
OBJECT_NAME = "checkout_session".freeze
|
|
end
|
|
end
|