@@ -376,6 +376,7 @@ 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 ,
379380 billing_address : Optional [AddressInputParam ] | Omit = omit ,
380381 currency : Optional [str ] | Omit = omit ,
381382 email : Optional [str ] | Omit = omit ,
@@ -420,6 +421,10 @@ def update(
420421 manual approval.If `null` is specified, the customer's auto issuance setting
421422 will be inherited from the account-level setting.
422423
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+
423428 currency: An ISO 4217 currency string used for the customer's invoices and balance. If not
424429 set at creation time, will be set at subscription creation time.
425430
@@ -615,6 +620,7 @@ def update(
615620 "additional_emails" : additional_emails ,
616621 "auto_collection" : auto_collection ,
617622 "auto_issuance" : auto_issuance ,
623+ "automatic_tax_enabled" : automatic_tax_enabled ,
618624 "billing_address" : billing_address ,
619625 "currency" : currency ,
620626 "email" : email ,
@@ -936,6 +942,7 @@ def update_by_external_id(
936942 additional_emails : Optional [SequenceNotStr [str ]] | Omit = omit ,
937943 auto_collection : Optional [bool ] | Omit = omit ,
938944 auto_issuance : Optional [bool ] | Omit = omit ,
945+ automatic_tax_enabled : Optional [bool ] | Omit = omit ,
939946 billing_address : Optional [AddressInputParam ] | Omit = omit ,
940947 currency : Optional [str ] | Omit = omit ,
941948 email : Optional [str ] | Omit = omit ,
@@ -979,6 +986,10 @@ def update_by_external_id(
979986 manual approval.If `null` is specified, the customer's auto issuance setting
980987 will be inherited from the account-level setting.
981988
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+
982993 currency: An ISO 4217 currency string used for the customer's invoices and balance. If not
983994 set at creation time, will be set at subscription creation time.
984995
@@ -1174,6 +1185,7 @@ def update_by_external_id(
11741185 "additional_emails" : additional_emails ,
11751186 "auto_collection" : auto_collection ,
11761187 "auto_issuance" : auto_issuance ,
1188+ "automatic_tax_enabled" : automatic_tax_enabled ,
11771189 "billing_address" : billing_address ,
11781190 "currency" : currency ,
11791191 "email" : email ,
@@ -1522,6 +1534,7 @@ async def update(
15221534 additional_emails : Optional [SequenceNotStr [str ]] | Omit = omit ,
15231535 auto_collection : Optional [bool ] | Omit = omit ,
15241536 auto_issuance : Optional [bool ] | Omit = omit ,
1537+ automatic_tax_enabled : Optional [bool ] | Omit = omit ,
15251538 billing_address : Optional [AddressInputParam ] | Omit = omit ,
15261539 currency : Optional [str ] | Omit = omit ,
15271540 email : Optional [str ] | Omit = omit ,
@@ -1566,6 +1579,10 @@ async def update(
15661579 manual approval.If `null` is specified, the customer's auto issuance setting
15671580 will be inherited from the account-level setting.
15681581
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+
15691586 currency: An ISO 4217 currency string used for the customer's invoices and balance. If not
15701587 set at creation time, will be set at subscription creation time.
15711588
@@ -1761,6 +1778,7 @@ async def update(
17611778 "additional_emails" : additional_emails ,
17621779 "auto_collection" : auto_collection ,
17631780 "auto_issuance" : auto_issuance ,
1781+ "automatic_tax_enabled" : automatic_tax_enabled ,
17641782 "billing_address" : billing_address ,
17651783 "currency" : currency ,
17661784 "email" : email ,
@@ -2082,6 +2100,7 @@ async def update_by_external_id(
20822100 additional_emails : Optional [SequenceNotStr [str ]] | Omit = omit ,
20832101 auto_collection : Optional [bool ] | Omit = omit ,
20842102 auto_issuance : Optional [bool ] | Omit = omit ,
2103+ automatic_tax_enabled : Optional [bool ] | Omit = omit ,
20852104 billing_address : Optional [AddressInputParam ] | Omit = omit ,
20862105 currency : Optional [str ] | Omit = omit ,
20872106 email : Optional [str ] | Omit = omit ,
@@ -2125,6 +2144,10 @@ async def update_by_external_id(
21252144 manual approval.If `null` is specified, the customer's auto issuance setting
21262145 will be inherited from the account-level setting.
21272146
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+
21282151 currency: An ISO 4217 currency string used for the customer's invoices and balance. If not
21292152 set at creation time, will be set at subscription creation time.
21302153
@@ -2320,6 +2343,7 @@ async def update_by_external_id(
23202343 "additional_emails" : additional_emails ,
23212344 "auto_collection" : auto_collection ,
23222345 "auto_issuance" : auto_issuance ,
2346+ "automatic_tax_enabled" : automatic_tax_enabled ,
23232347 "billing_address" : billing_address ,
23242348 "currency" : currency ,
23252349 "email" : email ,
0 commit comments