@@ -180,6 +180,7 @@ def update(
180180 * ,
181181 description : Optional [str ] | Omit = omit ,
182182 metadata : Dict [str , str ] | Omit = omit ,
183+ skip_settlement_ledger_transaction : Optional [bool ] | Omit = omit ,
183184 status : Literal ["posted" , "archived" ] | Omit = omit ,
184185 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
185186 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -198,6 +199,9 @@ def update(
198199 metadata: Additional data represented as key-value pairs. Both the key and value must be
199200 strings.
200201
202+ skip_settlement_ledger_transaction: It is set to `false` by default. It should be set to `true` when migrating
203+ existing settlements.
204+
201205 status: To post a pending ledger account settlement, use `posted`. To archive a pending
202206 ledger transaction, use `archived`.
203207
@@ -219,6 +223,7 @@ def update(
219223 {
220224 "description" : description ,
221225 "metadata" : metadata ,
226+ "skip_settlement_ledger_transaction" : skip_settlement_ledger_transaction ,
222227 "status" : status ,
223228 },
224229 ledger_account_settlement_update_params .LedgerAccountSettlementUpdateParams ,
@@ -454,6 +459,7 @@ async def update(
454459 * ,
455460 description : Optional [str ] | Omit = omit ,
456461 metadata : Dict [str , str ] | Omit = omit ,
462+ skip_settlement_ledger_transaction : Optional [bool ] | Omit = omit ,
457463 status : Literal ["posted" , "archived" ] | Omit = omit ,
458464 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
459465 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -472,6 +478,9 @@ async def update(
472478 metadata: Additional data represented as key-value pairs. Both the key and value must be
473479 strings.
474480
481+ skip_settlement_ledger_transaction: It is set to `false` by default. It should be set to `true` when migrating
482+ existing settlements.
483+
475484 status: To post a pending ledger account settlement, use `posted`. To archive a pending
476485 ledger transaction, use `archived`.
477486
@@ -493,6 +502,7 @@ async def update(
493502 {
494503 "description" : description ,
495504 "metadata" : metadata ,
505+ "skip_settlement_ledger_transaction" : skip_settlement_ledger_transaction ,
496506 "status" : status ,
497507 },
498508 ledger_account_settlement_update_params .LedgerAccountSettlementUpdateParams ,
0 commit comments