@@ -83,6 +83,9 @@ def list(
83
83
"""
84
84
Returns a paginated list of unexpired, non-zero credit blocks for a customer.
85
85
86
+ If `include_all_blocks` is set to `true`, all credit blocks (including expired
87
+ and depleted blocks) will be included in the response.
88
+
86
89
Note that `currency` defaults to credits if not specified. To use a real world
87
90
currency, set `currency` to an ISO 4217 string.
88
91
@@ -92,7 +95,8 @@ def list(
92
95
cursor: Cursor for pagination. This can be populated by the `next_cursor` value returned
93
96
from the initial request.
94
97
95
- include_all_blocks: Include all blocks, not just active ones.
98
+ include_all_blocks: If set to True, all expired and depleted blocks, as well as active block will be
99
+ returned.
96
100
97
101
limit: The number of items to fetch. Defaults to 20.
98
102
@@ -145,6 +149,9 @@ def list_by_external_id(
145
149
"""
146
150
Returns a paginated list of unexpired, non-zero credit blocks for a customer.
147
151
152
+ If `include_all_blocks` is set to `true`, all credit blocks (including expired
153
+ and depleted blocks) will be included in the response.
154
+
148
155
Note that `currency` defaults to credits if not specified. To use a real world
149
156
currency, set `currency` to an ISO 4217 string.
150
157
@@ -154,7 +161,8 @@ def list_by_external_id(
154
161
cursor: Cursor for pagination. This can be populated by the `next_cursor` value returned
155
162
from the initial request.
156
163
157
- include_all_blocks: Include all blocks, not just active ones.
164
+ include_all_blocks: If set to True, all expired and depleted blocks, as well as active block will be
165
+ returned.
158
166
159
167
limit: The number of items to fetch. Defaults to 20.
160
168
@@ -238,6 +246,9 @@ def list(
238
246
"""
239
247
Returns a paginated list of unexpired, non-zero credit blocks for a customer.
240
248
249
+ If `include_all_blocks` is set to `true`, all credit blocks (including expired
250
+ and depleted blocks) will be included in the response.
251
+
241
252
Note that `currency` defaults to credits if not specified. To use a real world
242
253
currency, set `currency` to an ISO 4217 string.
243
254
@@ -247,7 +258,8 @@ def list(
247
258
cursor: Cursor for pagination. This can be populated by the `next_cursor` value returned
248
259
from the initial request.
249
260
250
- include_all_blocks: Include all blocks, not just active ones.
261
+ include_all_blocks: If set to True, all expired and depleted blocks, as well as active block will be
262
+ returned.
251
263
252
264
limit: The number of items to fetch. Defaults to 20.
253
265
@@ -300,6 +312,9 @@ def list_by_external_id(
300
312
"""
301
313
Returns a paginated list of unexpired, non-zero credit blocks for a customer.
302
314
315
+ If `include_all_blocks` is set to `true`, all credit blocks (including expired
316
+ and depleted blocks) will be included in the response.
317
+
303
318
Note that `currency` defaults to credits if not specified. To use a real world
304
319
currency, set `currency` to an ISO 4217 string.
305
320
@@ -309,7 +324,8 @@ def list_by_external_id(
309
324
cursor: Cursor for pagination. This can be populated by the `next_cursor` value returned
310
325
from the initial request.
311
326
312
- include_all_blocks: Include all blocks, not just active ones.
327
+ include_all_blocks: If set to True, all expired and depleted blocks, as well as active block will be
328
+ returned.
313
329
314
330
limit: The number of items to fetch. Defaults to 20.
315
331
0 commit comments