@@ -376,7 +376,6 @@ def update(
376376 additional_emails : Optional [SequenceNotStr [str ]] | Omit = omit ,
377377 auto_collection : Optional [bool ] | Omit = omit ,
378378 auto_issuance : Optional [bool ] | Omit = omit ,
379- automatic_tax_enabled : Optional [bool ] | Omit = omit ,
380379 billing_address : Optional [AddressInputParam ] | Omit = omit ,
381380 currency : Optional [str ] | Omit = omit ,
382381 email : Optional [str ] | Omit = omit ,
@@ -421,10 +420,6 @@ def update(
421420 manual approval.If `null` is specified, the customer's auto issuance setting
422421 will be inherited from the account-level setting.
423422
424- automatic_tax_enabled: Whether automatic tax calculation is enabled for this customer. When null,
425- inherits from account-level setting. When true or false, overrides the account
426- setting.
427-
428423 currency: An ISO 4217 currency string used for the customer's invoices and balance. If not
429424 set at creation time, will be set at subscription creation time.
430425
@@ -620,7 +615,6 @@ def update(
620615 "additional_emails" : additional_emails ,
621616 "auto_collection" : auto_collection ,
622617 "auto_issuance" : auto_issuance ,
623- "automatic_tax_enabled" : automatic_tax_enabled ,
624618 "billing_address" : billing_address ,
625619 "currency" : currency ,
626620 "email" : email ,
@@ -942,7 +936,6 @@ def update_by_external_id(
942936 additional_emails : Optional [SequenceNotStr [str ]] | Omit = omit ,
943937 auto_collection : Optional [bool ] | Omit = omit ,
944938 auto_issuance : Optional [bool ] | Omit = omit ,
945- automatic_tax_enabled : Optional [bool ] | Omit = omit ,
946939 billing_address : Optional [AddressInputParam ] | Omit = omit ,
947940 currency : Optional [str ] | Omit = omit ,
948941 email : Optional [str ] | Omit = omit ,
@@ -986,10 +979,6 @@ def update_by_external_id(
986979 manual approval.If `null` is specified, the customer's auto issuance setting
987980 will be inherited from the account-level setting.
988981
989- automatic_tax_enabled: Whether automatic tax calculation is enabled for this customer. When null,
990- inherits from account-level setting. When true or false, overrides the account
991- setting.
992-
993982 currency: An ISO 4217 currency string used for the customer's invoices and balance. If not
994983 set at creation time, will be set at subscription creation time.
995984
@@ -1185,7 +1174,6 @@ def update_by_external_id(
11851174 "additional_emails" : additional_emails ,
11861175 "auto_collection" : auto_collection ,
11871176 "auto_issuance" : auto_issuance ,
1188- "automatic_tax_enabled" : automatic_tax_enabled ,
11891177 "billing_address" : billing_address ,
11901178 "currency" : currency ,
11911179 "email" : email ,
@@ -1534,7 +1522,6 @@ async def update(
15341522 additional_emails : Optional [SequenceNotStr [str ]] | Omit = omit ,
15351523 auto_collection : Optional [bool ] | Omit = omit ,
15361524 auto_issuance : Optional [bool ] | Omit = omit ,
1537- automatic_tax_enabled : Optional [bool ] | Omit = omit ,
15381525 billing_address : Optional [AddressInputParam ] | Omit = omit ,
15391526 currency : Optional [str ] | Omit = omit ,
15401527 email : Optional [str ] | Omit = omit ,
@@ -1579,10 +1566,6 @@ async def update(
15791566 manual approval.If `null` is specified, the customer's auto issuance setting
15801567 will be inherited from the account-level setting.
15811568
1582- automatic_tax_enabled: Whether automatic tax calculation is enabled for this customer. When null,
1583- inherits from account-level setting. When true or false, overrides the account
1584- setting.
1585-
15861569 currency: An ISO 4217 currency string used for the customer's invoices and balance. If not
15871570 set at creation time, will be set at subscription creation time.
15881571
@@ -1778,7 +1761,6 @@ async def update(
17781761 "additional_emails" : additional_emails ,
17791762 "auto_collection" : auto_collection ,
17801763 "auto_issuance" : auto_issuance ,
1781- "automatic_tax_enabled" : automatic_tax_enabled ,
17821764 "billing_address" : billing_address ,
17831765 "currency" : currency ,
17841766 "email" : email ,
@@ -2100,7 +2082,6 @@ async def update_by_external_id(
21002082 additional_emails : Optional [SequenceNotStr [str ]] | Omit = omit ,
21012083 auto_collection : Optional [bool ] | Omit = omit ,
21022084 auto_issuance : Optional [bool ] | Omit = omit ,
2103- automatic_tax_enabled : Optional [bool ] | Omit = omit ,
21042085 billing_address : Optional [AddressInputParam ] | Omit = omit ,
21052086 currency : Optional [str ] | Omit = omit ,
21062087 email : Optional [str ] | Omit = omit ,
@@ -2144,10 +2125,6 @@ async def update_by_external_id(
21442125 manual approval.If `null` is specified, the customer's auto issuance setting
21452126 will be inherited from the account-level setting.
21462127
2147- automatic_tax_enabled: Whether automatic tax calculation is enabled for this customer. When null,
2148- inherits from account-level setting. When true or false, overrides the account
2149- setting.
2150-
21512128 currency: An ISO 4217 currency string used for the customer's invoices and balance. If not
21522129 set at creation time, will be set at subscription creation time.
21532130
@@ -2343,7 +2320,6 @@ async def update_by_external_id(
23432320 "additional_emails" : additional_emails ,
23442321 "auto_collection" : auto_collection ,
23452322 "auto_issuance" : auto_issuance ,
2346- "automatic_tax_enabled" : automatic_tax_enabled ,
23472323 "billing_address" : billing_address ,
23482324 "currency" : currency ,
23492325 "email" : email ,
0 commit comments