@@ -137,9 +137,9 @@ def update(
137137 self ,
138138 lockbox_id : str ,
139139 * ,
140+ check_deposit_behavior : Literal ["enabled" , "disabled" ] | Omit = omit ,
140141 description : str | Omit = omit ,
141142 recipient_name : str | Omit = omit ,
142- status : Literal ["active" , "inactive" ] | Omit = omit ,
143143 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
144144 # The extra values given here take precedence over values defined on the client or passed to this method.
145145 extra_headers : Headers | None = None ,
@@ -154,16 +154,14 @@ def update(
154154 Args:
155155 lockbox_id: The identifier of the Lockbox.
156156
157- description: The description you choose for the Lockbox .
157+ check_deposit_behavior: This indicates if checks mailed to this lockbox will be deposited .
158158
159- recipient_name: The recipient name you choose for the Lockbox.
159+ - `enabled` - Checks mailed to this Lockbox will be deposited.
160+ - `disabled` - Checks mailed to this Lockbox will not be deposited.
160161
161- status: This indicates if checks can be sent to the Lockbox.
162+ description: The description you choose for the Lockbox.
162163
163- - `active` - This Lockbox is active. Checks mailed to it will be deposited
164- automatically.
165- - `inactive` - This Lockbox is inactive. Checks mailed to it will not be
166- deposited.
164+ recipient_name: The recipient name you choose for the Lockbox.
167165
168166 extra_headers: Send extra headers
169167
@@ -181,9 +179,9 @@ def update(
181179 f"/lockboxes/{ lockbox_id } " ,
182180 body = maybe_transform (
183181 {
182+ "check_deposit_behavior" : check_deposit_behavior ,
184183 "description" : description ,
185184 "recipient_name" : recipient_name ,
186- "status" : status ,
187185 },
188186 lockbox_update_params .LockboxUpdateParams ,
189187 ),
@@ -372,9 +370,9 @@ async def update(
372370 self ,
373371 lockbox_id : str ,
374372 * ,
373+ check_deposit_behavior : Literal ["enabled" , "disabled" ] | Omit = omit ,
375374 description : str | Omit = omit ,
376375 recipient_name : str | Omit = omit ,
377- status : Literal ["active" , "inactive" ] | Omit = omit ,
378376 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
379377 # The extra values given here take precedence over values defined on the client or passed to this method.
380378 extra_headers : Headers | None = None ,
@@ -389,16 +387,14 @@ async def update(
389387 Args:
390388 lockbox_id: The identifier of the Lockbox.
391389
392- description: The description you choose for the Lockbox .
390+ check_deposit_behavior: This indicates if checks mailed to this lockbox will be deposited .
393391
394- recipient_name: The recipient name you choose for the Lockbox.
392+ - `enabled` - Checks mailed to this Lockbox will be deposited.
393+ - `disabled` - Checks mailed to this Lockbox will not be deposited.
395394
396- status: This indicates if checks can be sent to the Lockbox.
395+ description: The description you choose for the Lockbox.
397396
398- - `active` - This Lockbox is active. Checks mailed to it will be deposited
399- automatically.
400- - `inactive` - This Lockbox is inactive. Checks mailed to it will not be
401- deposited.
397+ recipient_name: The recipient name you choose for the Lockbox.
402398
403399 extra_headers: Send extra headers
404400
@@ -416,9 +412,9 @@ async def update(
416412 f"/lockboxes/{ lockbox_id } " ,
417413 body = await async_maybe_transform (
418414 {
415+ "check_deposit_behavior" : check_deposit_behavior ,
419416 "description" : description ,
420417 "recipient_name" : recipient_name ,
421- "status" : status ,
422418 },
423419 lockbox_update_params .LockboxUpdateParams ,
424420 ),
0 commit comments