TaxDeductedAtSource.php 727 B

1234567891011121314151617
  1. <?php
  2. // File generated from our OpenAPI spec
  3. namespace Stripe;
  4. /**
  5. * @property string $id Unique identifier for the object.
  6. * @property string $object String representing the object's type. Objects of the same type share the same value.
  7. * @property int $period_end The end of the invoicing period. This TDS applies to Stripe fees collected during this invoicing period.
  8. * @property int $period_start The start of the invoicing period. This TDS applies to Stripe fees collected during this invoicing period.
  9. * @property string $tax_deduction_account_number The TAN that was supplied to Stripe when TDS was assessed
  10. */
  11. class TaxDeductedAtSource extends ApiResource
  12. {
  13. const OBJECT_NAME = 'tax_deducted_at_source';
  14. }