@@ -217,12 +217,12 @@ def list(
217217 self ,
218218 * ,
219219 account_id : str | NotGiven = NOT_GIVEN ,
220- ach_debit_status : account_number_list_params . ACHDebitStatus | NotGiven = NOT_GIVEN ,
220+ ach_debit_status : Literal [ "allowed" , "blocked" ] | NotGiven = NOT_GIVEN ,
221221 created_at : account_number_list_params .CreatedAt | NotGiven = NOT_GIVEN ,
222222 cursor : str | NotGiven = NOT_GIVEN ,
223223 idempotency_key : str | NotGiven = NOT_GIVEN ,
224224 limit : int | NotGiven = NOT_GIVEN ,
225- status : account_number_list_params . Status | NotGiven = NOT_GIVEN ,
225+ status : Literal [ "active" , "disabled" , "canceled" ] | NotGiven = NOT_GIVEN ,
226226 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
227227 # The extra values given here take precedence over values defined on the client or passed to this method.
228228 extra_headers : Headers | None = None ,
@@ -236,6 +236,11 @@ def list(
236236 Args:
237237 account_id: Filter Account Numbers to those belonging to the specified Account.
238238
239+ ach_debit_status: The ACH Debit status to retrieve Account Numbers for.
240+
241+ - `allowed` - ACH Debits are allowed.
242+ - `blocked` - ACH Debits are blocked.
243+
239244 cursor: Return the page of entries after this one.
240245
241246 idempotency_key: Filter records to the one with the specified `idempotency_key` you chose for
@@ -246,6 +251,12 @@ def list(
246251 limit: Limit the size of the list that is returned. The default (and maximum) is 100
247252 objects.
248253
254+ status: The status to retrieve Account Numbers for.
255+
256+ - `active` - The account number is active.
257+ - `disabled` - The account number is temporarily disabled.
258+ - `canceled` - The account number is permanently disabled.
259+
249260 extra_headers: Send extra headers
250261
251262 extra_query: Add additional query parameters to the request
@@ -465,12 +476,12 @@ def list(
465476 self ,
466477 * ,
467478 account_id : str | NotGiven = NOT_GIVEN ,
468- ach_debit_status : account_number_list_params . ACHDebitStatus | NotGiven = NOT_GIVEN ,
479+ ach_debit_status : Literal [ "allowed" , "blocked" ] | NotGiven = NOT_GIVEN ,
469480 created_at : account_number_list_params .CreatedAt | NotGiven = NOT_GIVEN ,
470481 cursor : str | NotGiven = NOT_GIVEN ,
471482 idempotency_key : str | NotGiven = NOT_GIVEN ,
472483 limit : int | NotGiven = NOT_GIVEN ,
473- status : account_number_list_params . Status | NotGiven = NOT_GIVEN ,
484+ status : Literal [ "active" , "disabled" , "canceled" ] | NotGiven = NOT_GIVEN ,
474485 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
475486 # The extra values given here take precedence over values defined on the client or passed to this method.
476487 extra_headers : Headers | None = None ,
@@ -484,6 +495,11 @@ def list(
484495 Args:
485496 account_id: Filter Account Numbers to those belonging to the specified Account.
486497
498+ ach_debit_status: The ACH Debit status to retrieve Account Numbers for.
499+
500+ - `allowed` - ACH Debits are allowed.
501+ - `blocked` - ACH Debits are blocked.
502+
487503 cursor: Return the page of entries after this one.
488504
489505 idempotency_key: Filter records to the one with the specified `idempotency_key` you chose for
@@ -494,6 +510,12 @@ def list(
494510 limit: Limit the size of the list that is returned. The default (and maximum) is 100
495511 objects.
496512
513+ status: The status to retrieve Account Numbers for.
514+
515+ - `active` - The account number is active.
516+ - `disabled` - The account number is temporarily disabled.
517+ - `canceled` - The account number is permanently disabled.
518+
497519 extra_headers: Send extra headers
498520
499521 extra_query: Add additional query parameters to the request
0 commit comments