@@ -44,6 +44,7 @@ def list(
4444 self ,
4545 customer_id : Optional [str ],
4646 * ,
47+ currency : Optional [str ] | NotGiven = NOT_GIVEN ,
4748 cursor : Optional [str ] | NotGiven = NOT_GIVEN ,
4849 limit : int | NotGiven = NOT_GIVEN ,
4950 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -57,6 +58,8 @@ def list(
5758 Returns a paginated list of unexpired, non-zero credit blocks for a customer.
5859
5960 Args:
61+ currency: The ledger currency or custom pricing unit to use.
62+
6063 cursor: Cursor for pagination. This can be populated by the `next_cursor` value returned
6164 from the initial request.
6265
@@ -80,6 +83,7 @@ def list(
8083 timeout = timeout ,
8184 query = maybe_transform (
8285 {
86+ "currency" : currency ,
8387 "cursor" : cursor ,
8488 "limit" : limit ,
8589 },
@@ -93,6 +97,7 @@ def list_by_external_id(
9397 self ,
9498 external_customer_id : Optional [str ],
9599 * ,
100+ currency : Optional [str ] | NotGiven = NOT_GIVEN ,
96101 cursor : Optional [str ] | NotGiven = NOT_GIVEN ,
97102 limit : int | NotGiven = NOT_GIVEN ,
98103 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -106,6 +111,8 @@ def list_by_external_id(
106111 Returns a paginated list of unexpired, non-zero credit blocks for a customer.
107112
108113 Args:
114+ currency: The ledger currency or custom pricing unit to use.
115+
109116 cursor: Cursor for pagination. This can be populated by the `next_cursor` value returned
110117 from the initial request.
111118
@@ -129,6 +136,7 @@ def list_by_external_id(
129136 timeout = timeout ,
130137 query = maybe_transform (
131138 {
139+ "currency" : currency ,
132140 "cursor" : cursor ,
133141 "limit" : limit ,
134142 },
@@ -152,6 +160,7 @@ def list(
152160 self ,
153161 customer_id : Optional [str ],
154162 * ,
163+ currency : Optional [str ] | NotGiven = NOT_GIVEN ,
155164 cursor : Optional [str ] | NotGiven = NOT_GIVEN ,
156165 limit : int | NotGiven = NOT_GIVEN ,
157166 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -165,6 +174,8 @@ def list(
165174 Returns a paginated list of unexpired, non-zero credit blocks for a customer.
166175
167176 Args:
177+ currency: The ledger currency or custom pricing unit to use.
178+
168179 cursor: Cursor for pagination. This can be populated by the `next_cursor` value returned
169180 from the initial request.
170181
@@ -188,6 +199,7 @@ def list(
188199 timeout = timeout ,
189200 query = maybe_transform (
190201 {
202+ "currency" : currency ,
191203 "cursor" : cursor ,
192204 "limit" : limit ,
193205 },
@@ -201,6 +213,7 @@ def list_by_external_id(
201213 self ,
202214 external_customer_id : Optional [str ],
203215 * ,
216+ currency : Optional [str ] | NotGiven = NOT_GIVEN ,
204217 cursor : Optional [str ] | NotGiven = NOT_GIVEN ,
205218 limit : int | NotGiven = NOT_GIVEN ,
206219 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -214,6 +227,8 @@ def list_by_external_id(
214227 Returns a paginated list of unexpired, non-zero credit blocks for a customer.
215228
216229 Args:
230+ currency: The ledger currency or custom pricing unit to use.
231+
217232 cursor: Cursor for pagination. This can be populated by the `next_cursor` value returned
218233 from the initial request.
219234
@@ -237,6 +252,7 @@ def list_by_external_id(
237252 timeout = timeout ,
238253 query = maybe_transform (
239254 {
255+ "currency" : currency ,
240256 "cursor" : cursor ,
241257 "limit" : limit ,
242258 },
0 commit comments