You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- Describe why this change is being made. Briefly include history and context, high-level what this PR does, and what the world looks like afterward. -->
3
+
4
+
### What?
5
+
<!--
6
+
List out the key changes made in this PR, e.g.
7
+
- implements the antimatter particle trace in the nitronium microfilament drive
8
+
- updated tests -->
9
+
10
+
### See Also
11
+
<!-- Include any links or additional information that help explain this change. -->
Copy file name to clipboardexpand all lines: stripe/_account.py
+28
Original file line number
Diff line number
Diff line change
@@ -548,6 +548,20 @@ class AddressKanji(StripeObject):
548
548
Town/cho-me.
549
549
"""
550
550
551
+
classDirectorshipDeclaration(StripeObject):
552
+
date: Optional[int]
553
+
"""
554
+
The Unix timestamp marking when the directorship declaration attestation was made.
555
+
"""
556
+
ip: Optional[str]
557
+
"""
558
+
The IP address from which the directorship declaration attestation was made.
559
+
"""
560
+
user_agent: Optional[str]
561
+
"""
562
+
The user-agent string from the browser where the directorship declaration attestation was made.
563
+
"""
564
+
551
565
classOwnershipDeclaration(StripeObject):
552
566
date: Optional[int]
553
567
"""
@@ -597,6 +611,10 @@ class Document(StripeObject):
597
611
"""
598
612
Whether the company's directors have been provided. This Boolean will be `true` if you've manually indicated that all directors are provided via [the `directors_provided` parameter](https://stripe.com/docs/api/accounts/update#update_account-company-directors_provided).
This hash is used to attest that the director information provided to Stripe is both current and correct.
617
+
"""
600
618
executives_provided: Optional[bool]
601
619
"""
602
620
Whether the company's executives have been provided. This Boolean will be `true` if you've manually indicated that all executives are provided via [the `executives_provided` parameter](https://stripe.com/docs/api/accounts/update#update_account-company-executives_provided), or if Stripe determined that sufficient executives were provided.
@@ -629,6 +647,12 @@ class Document(StripeObject):
629
647
"""
630
648
This hash is used to attest that the beneficial owner information provided to Stripe is both current and correct.
631
649
"""
650
+
ownership_exemption_reason: Optional[
651
+
Literal[
652
+
"qualified_entity_exceeds_ownership_threshold",
653
+
"qualifies_as_financial_institution",
654
+
]
655
+
]
632
656
phone: Optional[str]
633
657
"""
634
658
The company's phone number (used for verification).
Copy file name to clipboardexpand all lines: stripe/_card.py
+4
Original file line number
Diff line number
Diff line change
@@ -84,6 +84,10 @@ class DeleteParams(RequestOptions):
84
84
"""
85
85
Card brand. Can be `American Express`, `Diners Club`, `Discover`, `Eftpos Australia`, `Girocard`, `JCB`, `MasterCard`, `UnionPay`, `Visa`, or `Unknown`.
86
86
"""
87
+
brand_product: Optional[str]
88
+
"""
89
+
The [product code](https://stripe.com/docs/card-product-codes) that identifies the specific program or product associated with a card. (For internal use only and not typically available in standard API requests.)
90
+
"""
87
91
country: Optional[str]
88
92
"""
89
93
Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.
An enumerated value providing a more detailed explanation on [how to proceed with an error](https://stripe.com/docs/declines#retrying-issuer-declines).
159
+
"""
154
160
network_advice_code: Optional[str]
155
161
"""
156
162
For charges declined by the network, a 2 digit code which indicates the advice returned by the network on how to proceed with an error.
@@ -1664,6 +1670,10 @@ class VerifiedAddress(StripeObject):
1664
1670
State, county, province, or region.
1665
1671
"""
1666
1672
1673
+
country: Optional[str]
1674
+
"""
1675
+
Two-letter ISO code representing the buyer's country. Values are provided by PayPal directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
1676
+
"""
1667
1677
payer_email: Optional[str]
1668
1678
"""
1669
1679
Owner's email. Values are provided by PayPal directly
Copy file name to clipboardexpand all lines: stripe/_confirmation_token.py
+4
Original file line number
Diff line number
Diff line change
@@ -1174,6 +1174,10 @@ class Paynow(StripeObject):
1174
1174
pass
1175
1175
1176
1176
classPaypal(StripeObject):
1177
+
country: Optional[str]
1178
+
"""
1179
+
Two-letter ISO code representing the buyer's country. Values are provided by PayPal directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
1180
+
"""
1177
1181
fingerprint: Optional[str]
1178
1182
"""
1179
1183
Uniquely identifies this particular PayPal account. You can use this attribute to check whether two PayPal accounts are the same.
0 commit comments