3
3
from __future__ import annotations
4
4
5
5
from typing import Type , Iterable , cast
6
- from typing_extensions import Literal
7
6
8
7
import httpx
9
8
@@ -169,8 +168,6 @@ def list(
169
168
account_id : str ,
170
169
enable : bool | NotGiven = NOT_GIVEN ,
171
170
name : str | NotGiven = NOT_GIVEN ,
172
- order_by : str | NotGiven = NOT_GIVEN ,
173
- order_by_direction : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
174
171
page : int | NotGiven = NOT_GIVEN ,
175
172
per_page : int | NotGiven = NOT_GIVEN ,
176
173
search : str | NotGiven = NOT_GIVEN ,
@@ -187,10 +184,6 @@ def list(
187
184
Args:
188
185
gateway_id: gateway id
189
186
190
- order_by: Order By Column Name
191
-
192
- order_by_direction: Order By Direction
193
-
194
187
search: Search by id, name, filters
195
188
196
189
extra_headers: Send extra headers
@@ -217,8 +210,6 @@ def list(
217
210
{
218
211
"enable" : enable ,
219
212
"name" : name ,
220
- "order_by" : order_by ,
221
- "order_by_direction" : order_by_direction ,
222
213
"page" : page ,
223
214
"per_page" : per_page ,
224
215
"search" : search ,
@@ -456,8 +447,6 @@ def list(
456
447
account_id : str ,
457
448
enable : bool | NotGiven = NOT_GIVEN ,
458
449
name : str | NotGiven = NOT_GIVEN ,
459
- order_by : str | NotGiven = NOT_GIVEN ,
460
- order_by_direction : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
461
450
page : int | NotGiven = NOT_GIVEN ,
462
451
per_page : int | NotGiven = NOT_GIVEN ,
463
452
search : str | NotGiven = NOT_GIVEN ,
@@ -474,10 +463,6 @@ def list(
474
463
Args:
475
464
gateway_id: gateway id
476
465
477
- order_by: Order By Column Name
478
-
479
- order_by_direction: Order By Direction
480
-
481
466
search: Search by id, name, filters
482
467
483
468
extra_headers: Send extra headers
@@ -504,8 +489,6 @@ def list(
504
489
{
505
490
"enable" : enable ,
506
491
"name" : name ,
507
- "order_by" : order_by ,
508
- "order_by_direction" : order_by_direction ,
509
492
"page" : page ,
510
493
"per_page" : per_page ,
511
494
"search" : search ,
0 commit comments