@@ -96,6 +96,7 @@ def create(
9696 accounting_sync_configuration : Optional [NewAccountingSyncConfigurationParam ] | NotGiven = NOT_GIVEN ,
9797 additional_emails : Optional [SequenceNotStr [str ]] | NotGiven = NOT_GIVEN ,
9898 auto_collection : Optional [bool ] | NotGiven = NOT_GIVEN ,
99+ auto_issuance : Optional [bool ] | NotGiven = NOT_GIVEN ,
99100 billing_address : Optional [AddressInputParam ] | NotGiven = NOT_GIVEN ,
100101 currency : Optional [str ] | NotGiven = NOT_GIVEN ,
101102 email_delivery : Optional [bool ] | NotGiven = NOT_GIVEN ,
@@ -146,6 +147,11 @@ def create(
146147 charge a saved payment method, if available. This parameter defaults to `True`
147148 when a payment provider is provided on customer creation.
148149
150+ auto_issuance: Used to determine if invoices for this customer will be automatically issued. If
151+ true, invoices will be automatically issued. If false, invoices will require
152+ manual approval. If `null` is specified, the customer's auto issuance setting
153+ will be inherited from the account-level setting.
154+
149155 currency: An ISO 4217 currency string used for the customer's invoices and balance. If not
150156 set at creation time, will be set at subscription creation time.
151157
@@ -334,6 +340,7 @@ def create(
334340 "accounting_sync_configuration" : accounting_sync_configuration ,
335341 "additional_emails" : additional_emails ,
336342 "auto_collection" : auto_collection ,
343+ "auto_issuance" : auto_issuance ,
337344 "billing_address" : billing_address ,
338345 "currency" : currency ,
339346 "email_delivery" : email_delivery ,
@@ -367,6 +374,7 @@ def update(
367374 accounting_sync_configuration : Optional [NewAccountingSyncConfigurationParam ] | NotGiven = NOT_GIVEN ,
368375 additional_emails : Optional [SequenceNotStr [str ]] | NotGiven = NOT_GIVEN ,
369376 auto_collection : Optional [bool ] | NotGiven = NOT_GIVEN ,
377+ auto_issuance : Optional [bool ] | NotGiven = NOT_GIVEN ,
370378 billing_address : Optional [AddressInputParam ] | NotGiven = NOT_GIVEN ,
371379 currency : Optional [str ] | NotGiven = NOT_GIVEN ,
372380 email : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -405,6 +413,11 @@ def update(
405413 charge a saved payment method, if available. This parameter defaults to `True`
406414 when a payment provider is provided on customer creation.
407415
416+ auto_issuance: Used to determine if invoices for this customer will be automatically issued. If
417+ true, invoices will be automatically issued. If false, invoices will require
418+ manual approval.If `null` is specified, the customer's auto issuance setting
419+ will be inherited from the account-level setting.
420+
408421 currency: An ISO 4217 currency string used for the customer's invoices and balance. If not
409422 set at creation time, will be set at subscription creation time.
410423
@@ -599,6 +612,7 @@ def update(
599612 "accounting_sync_configuration" : accounting_sync_configuration ,
600613 "additional_emails" : additional_emails ,
601614 "auto_collection" : auto_collection ,
615+ "auto_issuance" : auto_issuance ,
602616 "billing_address" : billing_address ,
603617 "currency" : currency ,
604618 "email" : email ,
@@ -919,6 +933,7 @@ def update_by_external_id(
919933 accounting_sync_configuration : Optional [NewAccountingSyncConfigurationParam ] | NotGiven = NOT_GIVEN ,
920934 additional_emails : Optional [SequenceNotStr [str ]] | NotGiven = NOT_GIVEN ,
921935 auto_collection : Optional [bool ] | NotGiven = NOT_GIVEN ,
936+ auto_issuance : Optional [bool ] | NotGiven = NOT_GIVEN ,
922937 billing_address : Optional [AddressInputParam ] | NotGiven = NOT_GIVEN ,
923938 currency : Optional [str ] | NotGiven = NOT_GIVEN ,
924939 email : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -956,6 +971,11 @@ def update_by_external_id(
956971 charge a saved payment method, if available. This parameter defaults to `True`
957972 when a payment provider is provided on customer creation.
958973
974+ auto_issuance: Used to determine if invoices for this customer will be automatically issued. If
975+ true, invoices will be automatically issued. If false, invoices will require
976+ manual approval.If `null` is specified, the customer's auto issuance setting
977+ will be inherited from the account-level setting.
978+
959979 currency: An ISO 4217 currency string used for the customer's invoices and balance. If not
960980 set at creation time, will be set at subscription creation time.
961981
@@ -1150,6 +1170,7 @@ def update_by_external_id(
11501170 "accounting_sync_configuration" : accounting_sync_configuration ,
11511171 "additional_emails" : additional_emails ,
11521172 "auto_collection" : auto_collection ,
1173+ "auto_issuance" : auto_issuance ,
11531174 "billing_address" : billing_address ,
11541175 "currency" : currency ,
11551176 "email" : email ,
@@ -1218,6 +1239,7 @@ async def create(
12181239 accounting_sync_configuration : Optional [NewAccountingSyncConfigurationParam ] | NotGiven = NOT_GIVEN ,
12191240 additional_emails : Optional [SequenceNotStr [str ]] | NotGiven = NOT_GIVEN ,
12201241 auto_collection : Optional [bool ] | NotGiven = NOT_GIVEN ,
1242+ auto_issuance : Optional [bool ] | NotGiven = NOT_GIVEN ,
12211243 billing_address : Optional [AddressInputParam ] | NotGiven = NOT_GIVEN ,
12221244 currency : Optional [str ] | NotGiven = NOT_GIVEN ,
12231245 email_delivery : Optional [bool ] | NotGiven = NOT_GIVEN ,
@@ -1268,6 +1290,11 @@ async def create(
12681290 charge a saved payment method, if available. This parameter defaults to `True`
12691291 when a payment provider is provided on customer creation.
12701292
1293+ auto_issuance: Used to determine if invoices for this customer will be automatically issued. If
1294+ true, invoices will be automatically issued. If false, invoices will require
1295+ manual approval. If `null` is specified, the customer's auto issuance setting
1296+ will be inherited from the account-level setting.
1297+
12711298 currency: An ISO 4217 currency string used for the customer's invoices and balance. If not
12721299 set at creation time, will be set at subscription creation time.
12731300
@@ -1456,6 +1483,7 @@ async def create(
14561483 "accounting_sync_configuration" : accounting_sync_configuration ,
14571484 "additional_emails" : additional_emails ,
14581485 "auto_collection" : auto_collection ,
1486+ "auto_issuance" : auto_issuance ,
14591487 "billing_address" : billing_address ,
14601488 "currency" : currency ,
14611489 "email_delivery" : email_delivery ,
@@ -1489,6 +1517,7 @@ async def update(
14891517 accounting_sync_configuration : Optional [NewAccountingSyncConfigurationParam ] | NotGiven = NOT_GIVEN ,
14901518 additional_emails : Optional [SequenceNotStr [str ]] | NotGiven = NOT_GIVEN ,
14911519 auto_collection : Optional [bool ] | NotGiven = NOT_GIVEN ,
1520+ auto_issuance : Optional [bool ] | NotGiven = NOT_GIVEN ,
14921521 billing_address : Optional [AddressInputParam ] | NotGiven = NOT_GIVEN ,
14931522 currency : Optional [str ] | NotGiven = NOT_GIVEN ,
14941523 email : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -1527,6 +1556,11 @@ async def update(
15271556 charge a saved payment method, if available. This parameter defaults to `True`
15281557 when a payment provider is provided on customer creation.
15291558
1559+ auto_issuance: Used to determine if invoices for this customer will be automatically issued. If
1560+ true, invoices will be automatically issued. If false, invoices will require
1561+ manual approval.If `null` is specified, the customer's auto issuance setting
1562+ will be inherited from the account-level setting.
1563+
15301564 currency: An ISO 4217 currency string used for the customer's invoices and balance. If not
15311565 set at creation time, will be set at subscription creation time.
15321566
@@ -1721,6 +1755,7 @@ async def update(
17211755 "accounting_sync_configuration" : accounting_sync_configuration ,
17221756 "additional_emails" : additional_emails ,
17231757 "auto_collection" : auto_collection ,
1758+ "auto_issuance" : auto_issuance ,
17241759 "billing_address" : billing_address ,
17251760 "currency" : currency ,
17261761 "email" : email ,
@@ -2041,6 +2076,7 @@ async def update_by_external_id(
20412076 accounting_sync_configuration : Optional [NewAccountingSyncConfigurationParam ] | NotGiven = NOT_GIVEN ,
20422077 additional_emails : Optional [SequenceNotStr [str ]] | NotGiven = NOT_GIVEN ,
20432078 auto_collection : Optional [bool ] | NotGiven = NOT_GIVEN ,
2079+ auto_issuance : Optional [bool ] | NotGiven = NOT_GIVEN ,
20442080 billing_address : Optional [AddressInputParam ] | NotGiven = NOT_GIVEN ,
20452081 currency : Optional [str ] | NotGiven = NOT_GIVEN ,
20462082 email : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -2078,6 +2114,11 @@ async def update_by_external_id(
20782114 charge a saved payment method, if available. This parameter defaults to `True`
20792115 when a payment provider is provided on customer creation.
20802116
2117+ auto_issuance: Used to determine if invoices for this customer will be automatically issued. If
2118+ true, invoices will be automatically issued. If false, invoices will require
2119+ manual approval.If `null` is specified, the customer's auto issuance setting
2120+ will be inherited from the account-level setting.
2121+
20812122 currency: An ISO 4217 currency string used for the customer's invoices and balance. If not
20822123 set at creation time, will be set at subscription creation time.
20832124
@@ -2272,6 +2313,7 @@ async def update_by_external_id(
22722313 "accounting_sync_configuration" : accounting_sync_configuration ,
22732314 "additional_emails" : additional_emails ,
22742315 "auto_collection" : auto_collection ,
2316+ "auto_issuance" : auto_issuance ,
22752317 "billing_address" : billing_address ,
22762318 "currency" : currency ,
22772319 "email" : email ,
0 commit comments