5
5
6
6
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
8
- The version of the OpenAPI document: v1.0.0
8
+ The version of the OpenAPI document: v1.0.0b0
9
9
Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
11
11
Do not edit the class manually.
@@ -852,6 +852,10 @@ async def get_connections(
852
852
connection_protocol : Annotated [
853
853
Optional [StrictStr ], Field (description = "Connection protocol used" )
854
854
] = None ,
855
+ descending : Annotated [
856
+ Optional [StrictBool ],
857
+ Field (description = "Order results in descending order if true" ),
858
+ ] = None ,
855
859
invitation_key : Annotated [
856
860
Optional [Annotated [str , Field (strict = True )]],
857
861
Field (description = "invitation key" ),
@@ -869,6 +873,12 @@ async def get_connections(
869
873
offset : Annotated [
870
874
Optional [StrictInt ], Field (description = "Offset for pagination" )
871
875
] = None ,
876
+ order_by : Annotated [
877
+ Optional [StrictStr ],
878
+ Field (
879
+ description = 'The column to order results by. Only "id" is currently supported.'
880
+ ),
881
+ ] = None ,
872
882
state : Annotated [
873
883
Optional [StrictStr ], Field (description = "Connection state" )
874
884
] = None ,
@@ -902,6 +912,8 @@ async def get_connections(
902
912
:type alias: str
903
913
:param connection_protocol: Connection protocol used
904
914
:type connection_protocol: str
915
+ :param descending: Order results in descending order if true
916
+ :type descending: bool
905
917
:param invitation_key: invitation key
906
918
:type invitation_key: str
907
919
:param invitation_msg_id: Identifier of the associated Invitation Message
@@ -912,6 +924,8 @@ async def get_connections(
912
924
:type my_did: str
913
925
:param offset: Offset for pagination
914
926
:type offset: int
927
+ :param order_by: The column to order results by. Only \" id\" is currently supported.
928
+ :type order_by: str
915
929
:param state: Connection state
916
930
:type state: str
917
931
:param their_did: Their DID
@@ -926,11 +940,13 @@ async def get_connections(
926
940
_param = self ._get_connections_serialize (
927
941
alias = alias ,
928
942
connection_protocol = connection_protocol ,
943
+ descending = descending ,
929
944
invitation_key = invitation_key ,
930
945
invitation_msg_id = invitation_msg_id ,
931
946
limit = limit ,
932
947
my_did = my_did ,
933
948
offset = offset ,
949
+ order_by = order_by ,
934
950
state = state ,
935
951
their_did = their_did ,
936
952
their_public_did = their_public_did ,
@@ -957,11 +973,13 @@ def _get_connections_serialize(
957
973
self ,
958
974
alias ,
959
975
connection_protocol ,
976
+ descending ,
960
977
invitation_key ,
961
978
invitation_msg_id ,
962
979
limit ,
963
980
my_did ,
964
981
offset ,
982
+ order_by ,
965
983
state ,
966
984
their_did ,
967
985
their_public_did ,
@@ -993,6 +1011,10 @@ def _get_connections_serialize(
993
1011
994
1012
_query_params .append (("connection_protocol" , connection_protocol ))
995
1013
1014
+ if descending is not None :
1015
+
1016
+ _query_params .append (("descending" , descending ))
1017
+
996
1018
if invitation_key is not None :
997
1019
998
1020
_query_params .append (("invitation_key" , invitation_key ))
@@ -1013,6 +1035,10 @@ def _get_connections_serialize(
1013
1035
1014
1036
_query_params .append (("offset" , offset ))
1015
1037
1038
+ if order_by is not None :
1039
+
1040
+ _query_params .append (("order_by" , order_by ))
1041
+
1016
1042
if state is not None :
1017
1043
1018
1044
_query_params .append (("state" , state ))
0 commit comments