33from __future__ import annotations
44
55from typing import Type , Iterable , cast
6- from typing_extensions import Literal
76
87import httpx
98
@@ -169,8 +168,6 @@ def list(
169168 account_id : str ,
170169 enable : bool | NotGiven = NOT_GIVEN ,
171170 name : str | NotGiven = NOT_GIVEN ,
172- order_by : str | NotGiven = NOT_GIVEN ,
173- order_by_direction : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
174171 page : int | NotGiven = NOT_GIVEN ,
175172 per_page : int | NotGiven = NOT_GIVEN ,
176173 search : str | NotGiven = NOT_GIVEN ,
@@ -187,10 +184,6 @@ def list(
187184 Args:
188185 gateway_id: gateway id
189186
190- order_by: Order By Column Name
191-
192- order_by_direction: Order By Direction
193-
194187 search: Search by id, name, filters
195188
196189 extra_headers: Send extra headers
@@ -217,8 +210,6 @@ def list(
217210 {
218211 "enable" : enable ,
219212 "name" : name ,
220- "order_by" : order_by ,
221- "order_by_direction" : order_by_direction ,
222213 "page" : page ,
223214 "per_page" : per_page ,
224215 "search" : search ,
@@ -456,8 +447,6 @@ def list(
456447 account_id : str ,
457448 enable : bool | NotGiven = NOT_GIVEN ,
458449 name : str | NotGiven = NOT_GIVEN ,
459- order_by : str | NotGiven = NOT_GIVEN ,
460- order_by_direction : Literal ["asc" , "desc" ] | NotGiven = NOT_GIVEN ,
461450 page : int | NotGiven = NOT_GIVEN ,
462451 per_page : int | NotGiven = NOT_GIVEN ,
463452 search : str | NotGiven = NOT_GIVEN ,
@@ -474,10 +463,6 @@ def list(
474463 Args:
475464 gateway_id: gateway id
476465
477- order_by: Order By Column Name
478-
479- order_by_direction: Order By Direction
480-
481466 search: Search by id, name, filters
482467
483468 extra_headers: Send extra headers
@@ -504,8 +489,6 @@ def list(
504489 {
505490 "enable" : enable ,
506491 "name" : name ,
507- "order_by" : order_by ,
508- "order_by_direction" : order_by_direction ,
509492 "page" : page ,
510493 "per_page" : per_page ,
511494 "search" : search ,
0 commit comments