@@ -63,6 +63,7 @@ def list(
63
63
* ,
64
64
currency : Optional [str ] | NotGiven = NOT_GIVEN ,
65
65
cursor : Optional [str ] | NotGiven = NOT_GIVEN ,
66
+ include_all_blocks : bool | NotGiven = NOT_GIVEN ,
66
67
limit : int | NotGiven = NOT_GIVEN ,
67
68
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
68
69
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -83,6 +84,8 @@ def list(
83
84
cursor: Cursor for pagination. This can be populated by the `next_cursor` value returned
84
85
from the initial request.
85
86
87
+ include_all_blocks: Include all blocks, not just active ones.
88
+
86
89
limit: The number of items to fetch. Defaults to 20.
87
90
88
91
extra_headers: Send extra headers
@@ -107,6 +110,7 @@ def list(
107
110
{
108
111
"currency" : currency ,
109
112
"cursor" : cursor ,
113
+ "include_all_blocks" : include_all_blocks ,
110
114
"limit" : limit ,
111
115
},
112
116
credit_list_params .CreditListParams ,
@@ -121,6 +125,7 @@ def list_by_external_id(
121
125
* ,
122
126
currency : Optional [str ] | NotGiven = NOT_GIVEN ,
123
127
cursor : Optional [str ] | NotGiven = NOT_GIVEN ,
128
+ include_all_blocks : bool | NotGiven = NOT_GIVEN ,
124
129
limit : int | NotGiven = NOT_GIVEN ,
125
130
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
126
131
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -141,6 +146,8 @@ def list_by_external_id(
141
146
cursor: Cursor for pagination. This can be populated by the `next_cursor` value returned
142
147
from the initial request.
143
148
149
+ include_all_blocks: Include all blocks, not just active ones.
150
+
144
151
limit: The number of items to fetch. Defaults to 20.
145
152
146
153
extra_headers: Send extra headers
@@ -167,6 +174,7 @@ def list_by_external_id(
167
174
{
168
175
"currency" : currency ,
169
176
"cursor" : cursor ,
177
+ "include_all_blocks" : include_all_blocks ,
170
178
"limit" : limit ,
171
179
},
172
180
credit_list_by_external_id_params .CreditListByExternalIDParams ,
@@ -199,6 +207,7 @@ def list(
199
207
* ,
200
208
currency : Optional [str ] | NotGiven = NOT_GIVEN ,
201
209
cursor : Optional [str ] | NotGiven = NOT_GIVEN ,
210
+ include_all_blocks : bool | NotGiven = NOT_GIVEN ,
202
211
limit : int | NotGiven = NOT_GIVEN ,
203
212
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
204
213
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -219,6 +228,8 @@ def list(
219
228
cursor: Cursor for pagination. This can be populated by the `next_cursor` value returned
220
229
from the initial request.
221
230
231
+ include_all_blocks: Include all blocks, not just active ones.
232
+
222
233
limit: The number of items to fetch. Defaults to 20.
223
234
224
235
extra_headers: Send extra headers
@@ -243,6 +254,7 @@ def list(
243
254
{
244
255
"currency" : currency ,
245
256
"cursor" : cursor ,
257
+ "include_all_blocks" : include_all_blocks ,
246
258
"limit" : limit ,
247
259
},
248
260
credit_list_params .CreditListParams ,
@@ -257,6 +269,7 @@ def list_by_external_id(
257
269
* ,
258
270
currency : Optional [str ] | NotGiven = NOT_GIVEN ,
259
271
cursor : Optional [str ] | NotGiven = NOT_GIVEN ,
272
+ include_all_blocks : bool | NotGiven = NOT_GIVEN ,
260
273
limit : int | NotGiven = NOT_GIVEN ,
261
274
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
262
275
# The extra values given here take precedence over values defined on the client or passed to this method.
@@ -277,6 +290,8 @@ def list_by_external_id(
277
290
cursor: Cursor for pagination. This can be populated by the `next_cursor` value returned
278
291
from the initial request.
279
292
293
+ include_all_blocks: Include all blocks, not just active ones.
294
+
280
295
limit: The number of items to fetch. Defaults to 20.
281
296
282
297
extra_headers: Send extra headers
@@ -303,6 +318,7 @@ def list_by_external_id(
303
318
{
304
319
"currency" : currency ,
305
320
"cursor" : cursor ,
321
+ "include_all_blocks" : include_all_blocks ,
306
322
"limit" : limit ,
307
323
},
308
324
credit_list_by_external_id_params .CreditListByExternalIDParams ,
0 commit comments