stripe-ruby/lib/stripe/resources/tax_deducted_at_source.rb
2024-12-20 19:41:09 +00:00

23 lines
812 B
Ruby

# File generated from our OpenAPI spec
# frozen_string_literal: true
module Stripe
class TaxDeductedAtSource < APIResource
OBJECT_NAME = "tax_deducted_at_source"
def self.object_name
"tax_deducted_at_source"
end
# Unique identifier for the object.
attr_reader :id
# String representing the object's type. Objects of the same type share the same value.
attr_reader :object
# The end of the invoicing period. This TDS applies to Stripe fees collected during this invoicing period.
attr_reader :period_end
# The start of the invoicing period. This TDS applies to Stripe fees collected during this invoicing period.
attr_reader :period_start
# The TAN that was supplied to Stripe when TDS was assessed
attr_reader :tax_deduction_account_number
end
end