@@ -79,7 +79,6 @@ def create(
7979 nature_of_business : str ,
8080 tos_timestamp : str ,
8181 workflow : Literal ["KYB_BASIC" , "KYB_BYO" ],
82- beneficial_owner_entities : Iterable [account_holder_create_params .KYBBeneficialOwnerEntity ] | Omit = omit ,
8382 external_id : str | Omit = omit ,
8483 kyb_passed_timestamp : str | Omit = omit ,
8584 naics_code : str | Omit = omit ,
@@ -130,8 +129,6 @@ def create(
130129
131130 workflow: Specifies the type of KYB workflow to run.
132131
133- beneficial_owner_entities: Deprecated.
134-
135132 external_id: A user provided id that can be used to link an account holder with an external
136133 system
137134
@@ -381,7 +378,6 @@ def create(
381378 | Literal ["KYC_BASIC" , "KYC_BYO" ]
382379 | Literal ["KYC_EXEMPT" ]
383380 | Omit = omit ,
384- beneficial_owner_entities : Iterable [account_holder_create_params .KYBBeneficialOwnerEntity ] | Omit = omit ,
385381 external_id : str | Omit = omit ,
386382 kyb_passed_timestamp : str | Omit = omit ,
387383 naics_code : str | Omit = omit ,
@@ -414,7 +410,6 @@ def create(
414410 "nature_of_business" : nature_of_business ,
415411 "tos_timestamp" : tos_timestamp ,
416412 "workflow" : workflow ,
417- "beneficial_owner_entities" : beneficial_owner_entities ,
418413 "external_id" : external_id ,
419414 "kyb_passed_timestamp" : kyb_passed_timestamp ,
420415 "naics_code" : naics_code ,
@@ -478,8 +473,6 @@ def update(
478473 self ,
479474 account_holder_token : str ,
480475 * ,
481- beneficial_owner_entities : Iterable [account_holder_update_params .KYBPatchRequestBeneficialOwnerEntity ]
482- | Omit = omit ,
483476 beneficial_owner_individuals : Iterable [account_holder_update_params .KYBPatchRequestBeneficialOwnerIndividual ]
484477 | Omit = omit ,
485478 business_entity : account_holder_update_params .KYBPatchRequestBusinessEntity | Omit = omit ,
@@ -508,8 +501,6 @@ def update(
508501 the program that the calling API key manages.
509502
510503 Args:
511- beneficial_owner_entities: Deprecated.
512-
513504 beneficial_owner_individuals: You must submit a list of all direct and indirect individuals with 25% or more
514505 ownership in the company. A maximum of 4 beneficial owners can be submitted. If
515506 no individual owns 25% of the company you do not need to send beneficial owner
@@ -658,8 +649,6 @@ def update(
658649 self ,
659650 account_holder_token : str ,
660651 * ,
661- beneficial_owner_entities : Iterable [account_holder_update_params .KYBPatchRequestBeneficialOwnerEntity ]
662- | Omit = omit ,
663652 beneficial_owner_individuals : Iterable [account_holder_update_params .KYBPatchRequestBeneficialOwnerIndividual ]
664653 | Omit = omit ,
665654 business_entity : account_holder_update_params .KYBPatchRequestBusinessEntity | Omit = omit ,
@@ -693,7 +682,6 @@ def update(
693682 f"/v1/account_holders/{ account_holder_token } " ,
694683 body = maybe_transform (
695684 {
696- "beneficial_owner_entities" : beneficial_owner_entities ,
697685 "beneficial_owner_individuals" : beneficial_owner_individuals ,
698686 "business_entity" : business_entity ,
699687 "control_person" : control_person ,
@@ -1169,7 +1157,6 @@ async def create(
11691157 nature_of_business : str ,
11701158 tos_timestamp : str ,
11711159 workflow : Literal ["KYB_BASIC" , "KYB_BYO" ],
1172- beneficial_owner_entities : Iterable [account_holder_create_params .KYBBeneficialOwnerEntity ] | Omit = omit ,
11731160 external_id : str | Omit = omit ,
11741161 kyb_passed_timestamp : str | Omit = omit ,
11751162 naics_code : str | Omit = omit ,
@@ -1220,8 +1207,6 @@ async def create(
12201207
12211208 workflow: Specifies the type of KYB workflow to run.
12221209
1223- beneficial_owner_entities: Deprecated.
1224-
12251210 external_id: A user provided id that can be used to link an account holder with an external
12261211 system
12271212
@@ -1471,7 +1456,6 @@ async def create(
14711456 | Literal ["KYC_BASIC" , "KYC_BYO" ]
14721457 | Literal ["KYC_EXEMPT" ]
14731458 | Omit = omit ,
1474- beneficial_owner_entities : Iterable [account_holder_create_params .KYBBeneficialOwnerEntity ] | Omit = omit ,
14751459 external_id : str | Omit = omit ,
14761460 kyb_passed_timestamp : str | Omit = omit ,
14771461 naics_code : str | Omit = omit ,
@@ -1504,7 +1488,6 @@ async def create(
15041488 "nature_of_business" : nature_of_business ,
15051489 "tos_timestamp" : tos_timestamp ,
15061490 "workflow" : workflow ,
1507- "beneficial_owner_entities" : beneficial_owner_entities ,
15081491 "external_id" : external_id ,
15091492 "kyb_passed_timestamp" : kyb_passed_timestamp ,
15101493 "naics_code" : naics_code ,
@@ -1568,8 +1551,6 @@ async def update(
15681551 self ,
15691552 account_holder_token : str ,
15701553 * ,
1571- beneficial_owner_entities : Iterable [account_holder_update_params .KYBPatchRequestBeneficialOwnerEntity ]
1572- | Omit = omit ,
15731554 beneficial_owner_individuals : Iterable [account_holder_update_params .KYBPatchRequestBeneficialOwnerIndividual ]
15741555 | Omit = omit ,
15751556 business_entity : account_holder_update_params .KYBPatchRequestBusinessEntity | Omit = omit ,
@@ -1598,8 +1579,6 @@ async def update(
15981579 the program that the calling API key manages.
15991580
16001581 Args:
1601- beneficial_owner_entities: Deprecated.
1602-
16031582 beneficial_owner_individuals: You must submit a list of all direct and indirect individuals with 25% or more
16041583 ownership in the company. A maximum of 4 beneficial owners can be submitted. If
16051584 no individual owns 25% of the company you do not need to send beneficial owner
@@ -1748,8 +1727,6 @@ async def update(
17481727 self ,
17491728 account_holder_token : str ,
17501729 * ,
1751- beneficial_owner_entities : Iterable [account_holder_update_params .KYBPatchRequestBeneficialOwnerEntity ]
1752- | Omit = omit ,
17531730 beneficial_owner_individuals : Iterable [account_holder_update_params .KYBPatchRequestBeneficialOwnerIndividual ]
17541731 | Omit = omit ,
17551732 business_entity : account_holder_update_params .KYBPatchRequestBusinessEntity | Omit = omit ,
@@ -1783,7 +1760,6 @@ async def update(
17831760 f"/v1/account_holders/{ account_holder_token } " ,
17841761 body = await async_maybe_transform (
17851762 {
1786- "beneficial_owner_entities" : beneficial_owner_entities ,
17871763 "beneficial_owner_individuals" : beneficial_owner_individuals ,
17881764 "business_entity" : business_entity ,
17891765 "control_person" : control_person ,
0 commit comments