diff --git a/OPENAPI_VERSION b/OPENAPI_VERSION index 0c105aace..c9d288ffc 100644 --- a/OPENAPI_VERSION +++ b/OPENAPI_VERSION @@ -1 +1 @@ -v1424 \ No newline at end of file +v1429 \ No newline at end of file diff --git a/stripe/_account.py b/stripe/_account.py index 30b00149e..dacd765b2 100644 --- a/stripe/_account.py +++ b/stripe/_account.py @@ -644,6 +644,12 @@ class Document(StripeObject): """ This hash is used to attest that the beneficial owner information provided to Stripe is both current and correct. """ + ownership_exemption_reason: Optional[ + Literal[ + "qualified_entity_exceeds_ownership_threshold", + "qualifies_as_financial_institution", + ] + ] phone: Optional[str] """ The company's phone number (used for verification). @@ -2536,6 +2542,9 @@ class CreateParamsCompany(TypedDict): """ This hash is used to attest that the beneficial owner information provided to Stripe is both current and correct. """ + ownership_exemption_reason: NotRequired[ + "Literal['']|Literal['qualified_entity_exceeds_ownership_threshold', 'qualifies_as_financial_institution']" + ] phone: NotRequired[str] """ The company's phone number (used for verification). diff --git a/stripe/_account_service.py b/stripe/_account_service.py index 47b444a4e..e0653f82c 100644 --- a/stripe/_account_service.py +++ b/stripe/_account_service.py @@ -1119,6 +1119,9 @@ class CreateParamsCompany(TypedDict): """ This hash is used to attest that the beneficial owner information provided to Stripe is both current and correct. """ + ownership_exemption_reason: NotRequired[ + "Literal['']|Literal['qualified_entity_exceeds_ownership_threshold', 'qualifies_as_financial_institution']" + ] phone: NotRequired[str] """ The company's phone number (used for verification). @@ -3143,6 +3146,9 @@ class UpdateParamsCompany(TypedDict): """ This hash is used to attest that the beneficial owner information provided to Stripe is both current and correct. """ + ownership_exemption_reason: NotRequired[ + "Literal['']|Literal['qualified_entity_exceeds_ownership_threshold', 'qualifies_as_financial_institution']" + ] phone: NotRequired[str] """ The company's phone number (used for verification). diff --git a/stripe/_token.py b/stripe/_token.py index 4e8e7ba7a..4aa174208 100644 --- a/stripe/_token.py +++ b/stripe/_token.py @@ -155,6 +155,9 @@ class CreateParamsAccountCompany(TypedDict): """ Whether the user described by the data in the token has been shown the Ownership Declaration and indicated that it is correct. """ + ownership_exemption_reason: NotRequired[ + "Literal['']|Literal['qualified_entity_exceeds_ownership_threshold', 'qualifies_as_financial_institution']" + ] phone: NotRequired[str] """ The company's phone number (used for verification). diff --git a/stripe/_token_service.py b/stripe/_token_service.py index 2dd639f21..603f857af 100644 --- a/stripe/_token_service.py +++ b/stripe/_token_service.py @@ -122,6 +122,9 @@ class CreateParamsAccountCompany(TypedDict): """ Whether the user described by the data in the token has been shown the Ownership Declaration and indicated that it is correct. """ + ownership_exemption_reason: NotRequired[ + "Literal['']|Literal['qualified_entity_exceeds_ownership_threshold', 'qualifies_as_financial_institution']" + ] phone: NotRequired[str] """ The company's phone number (used for verification).