mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
17 lines
556 B
Ruby
17 lines
556 B
Ruby
# File generated from our OpenAPI spec
|
|
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
class TerminalService < StripeService
|
|
attr_reader :configurations, :connection_tokens, :locations, :readers
|
|
|
|
def initialize(requestor)
|
|
super
|
|
@configurations = Stripe::Terminal::ConfigurationService.new(@requestor)
|
|
@connection_tokens = Stripe::Terminal::ConnectionTokenService.new(@requestor)
|
|
@locations = Stripe::Terminal::LocationService.new(@requestor)
|
|
@readers = Stripe::Terminal::ReaderService.new(@requestor)
|
|
end
|
|
end
|
|
end
|