File: _tax_deducted_at_source.py

package info (click to toggle)
python-stripe 12.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,864 kB
  • sloc: python: 157,573; makefile: 13; sh: 9
file content (31 lines) | stat: -rw-r--r-- 951 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- coding: utf-8 -*-
# File generated from our OpenAPI spec
from stripe._stripe_object import StripeObject
from typing import ClassVar
from typing_extensions import Literal


class TaxDeductedAtSource(StripeObject):
    OBJECT_NAME: ClassVar[Literal["tax_deducted_at_source"]] = (
        "tax_deducted_at_source"
    )
    id: str
    """
    Unique identifier for the object.
    """
    object: Literal["tax_deducted_at_source"]
    """
    String representing the object's type. Objects of the same type share the same value.
    """
    period_end: int
    """
    The end of the invoicing period. This TDS applies to Stripe fees collected during this invoicing period.
    """
    period_start: int
    """
    The start of the invoicing period. This TDS applies to Stripe fees collected during this invoicing period.
    """
    tax_deduction_account_number: str
    """
    The TAN that was supplied to Stripe when TDS was assessed
    """