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
The status of the Payco capability of the account, or whether the account can directly process Payco payments.
@@ -486,6 +492,20 @@ class AddressKanji(StripeObject):
486
492
Town/cho-me.
487
493
"""
488
494
495
+
classDirectorshipDeclaration(StripeObject):
496
+
date: Optional[int]
497
+
"""
498
+
The Unix timestamp marking when the directorship declaration attestation was made.
499
+
"""
500
+
ip: Optional[str]
501
+
"""
502
+
The IP address from which the directorship declaration attestation was made.
503
+
"""
504
+
user_agent: Optional[str]
505
+
"""
506
+
The user-agent string from the browser where the directorship declaration attestation was made.
507
+
"""
508
+
489
509
classOwnershipDeclaration(StripeObject):
490
510
date: Optional[int]
491
511
"""
@@ -535,6 +555,10 @@ class Document(StripeObject):
535
555
"""
536
556
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.
561
+
"""
538
562
executives_provided: Optional[bool]
539
563
"""
540
564
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.
@@ -567,6 +591,12 @@ class Document(StripeObject):
567
591
"""
568
592
This hash is used to attest that the beneficial owner information provided to Stripe is both current and correct.
569
593
"""
594
+
ownership_exemption_reason: Optional[
595
+
Literal[
596
+
"qualified_entity_exceeds_ownership_threshold",
597
+
"qualifies_as_financial_institution",
598
+
]
599
+
]
570
600
phone: Optional[str]
571
601
"""
572
602
The company's phone number (used for verification).
@@ -2046,6 +2083,12 @@ class CreateParamsCapabilitiesP24Payments(TypedDict):
2046
2083
Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the `requirements` arrays.
Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the `requirements` arrays.
@@ -2190,6 +2233,12 @@ class CreateParamsCompany(TypedDict):
2190
2233
"""
2191
2234
Whether the company's directors have been provided. Set this Boolean to `true` after creating all the company's directors with [the Persons API](https://stripe.com/api/persons) for accounts with a `relationship.director` requirement. This value is not automatically set to `true` after creating directors, so it needs to be updated to indicate all directors have been provided.
This hash is used to attest that the directors information provided to Stripe is both current and correct.
2241
+
"""
2193
2242
executives_provided: NotRequired[bool]
2194
2243
"""
2195
2244
Whether the company's executives have been provided. Set this Boolean to `true` after creating all the company's executives with [the Persons API](https://stripe.com/api/persons) for accounts with a `relationship.executive` requirement.
@@ -2224,6 +2273,9 @@ class CreateParamsCompany(TypedDict):
2224
2273
"""
2225
2274
This hash is used to attest that the beneficial owner information provided to Stripe is both current and correct.
@@ -777,6 +783,12 @@ class CreateParamsCapabilitiesP24Payments(TypedDict):
777
783
Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the `requirements` arrays.
Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the `requirements` arrays.
@@ -925,6 +937,12 @@ class CreateParamsCompany(TypedDict):
925
937
"""
926
938
Whether the company's directors have been provided. Set this Boolean to `true` after creating all the company's directors with [the Persons API](https://stripe.com/api/persons) for accounts with a `relationship.director` requirement. This value is not automatically set to `true` after creating directors, so it needs to be updated to indicate all directors have been provided.
This hash is used to attest that the directors information provided to Stripe is both current and correct.
945
+
"""
928
946
executives_provided: NotRequired[bool]
929
947
"""
930
948
Whether the company's executives have been provided. Set this Boolean to `true` after creating all the company's executives with [the Persons API](https://stripe.com/api/persons) for accounts with a `relationship.executive` requirement.
@@ -959,6 +977,9 @@ class CreateParamsCompany(TypedDict):
959
977
"""
960
978
This hash is used to attest that the beneficial owner information provided to Stripe is both current and correct.
@@ -2545,6 +2598,12 @@ class UpdateParamsCapabilitiesP24Payments(TypedDict):
2545
2598
Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the `requirements` arrays.
Passing true requests the capability for the account, if it is not already requested. A requested capability may not immediately become active. Any requirements to activate the capability are returned in the `requirements` arrays.
@@ -2693,6 +2752,12 @@ class UpdateParamsCompany(TypedDict):
2693
2752
"""
2694
2753
Whether the company's directors have been provided. Set this Boolean to `true` after creating all the company's directors with [the Persons API](https://stripe.com/api/persons) for accounts with a `relationship.director` requirement. This value is not automatically set to `true` after creating directors, so it needs to be updated to indicate all directors have been provided.
This hash is used to attest that the directors information provided to Stripe is both current and correct.
2760
+
"""
2696
2761
executives_provided: NotRequired[bool]
2697
2762
"""
2698
2763
Whether the company's executives have been provided. Set this Boolean to `true` after creating all the company's executives with [the Persons API](https://stripe.com/api/persons) for accounts with a `relationship.executive` requirement.
@@ -2727,6 +2792,9 @@ class UpdateParamsCompany(TypedDict):
2727
2792
"""
2728
2793
This hash is used to attest that the beneficial owner information provided to Stripe is both current and correct.
0 commit comments