mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-16 00:02:00 -04:00
17 lines
538 B
Ruby
17 lines
538 B
Ruby
# File generated from our OpenAPI spec
|
|
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
class TaxService < StripeService
|
|
attr_reader :calculations, :registrations, :settings, :transactions
|
|
|
|
def initialize(requestor)
|
|
super(requestor)
|
|
@calculations = Stripe::Tax::CalculationService.new(@requestor)
|
|
@registrations = Stripe::Tax::RegistrationService.new(@requestor)
|
|
@settings = Stripe::Tax::SettingsService.new(@requestor)
|
|
@transactions = Stripe::Tax::TransactionService.new(@requestor)
|
|
end
|
|
end
|
|
end
|