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: v0.12.1
8
+ The version of the OpenAPI document: v0.12.2b1
9
9
Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
11
11
Do not edit the class manually.
@@ -853,9 +853,15 @@ async def get_connections(
853
853
Optional [StrictStr ],
854
854
Field (description = "Identifier of the associated Invitation Message" ),
855
855
] = None ,
856
+ limit : Annotated [
857
+ Optional [StrictInt ], Field (description = "Number of results to return" )
858
+ ] = None ,
856
859
my_did : Annotated [
857
860
Optional [Annotated [str , Field (strict = True )]], Field (description = "My DID" )
858
861
] = None ,
862
+ offset : Annotated [
863
+ Optional [StrictInt ], Field (description = "Offset for pagination" )
864
+ ] = None ,
859
865
state : Annotated [
860
866
Optional [StrictStr ], Field (description = "Connection state" )
861
867
] = None ,
@@ -893,8 +899,12 @@ async def get_connections(
893
899
:type invitation_key: str
894
900
:param invitation_msg_id: Identifier of the associated Invitation Message
895
901
:type invitation_msg_id: str
902
+ :param limit: Number of results to return
903
+ :type limit: int
896
904
:param my_did: My DID
897
905
:type my_did: str
906
+ :param offset: Offset for pagination
907
+ :type offset: int
898
908
:param state: Connection state
899
909
:type state: str
900
910
:param their_did: Their DID
@@ -911,7 +921,9 @@ async def get_connections(
911
921
connection_protocol = connection_protocol ,
912
922
invitation_key = invitation_key ,
913
923
invitation_msg_id = invitation_msg_id ,
924
+ limit = limit ,
914
925
my_did = my_did ,
926
+ offset = offset ,
915
927
state = state ,
916
928
their_did = their_did ,
917
929
their_public_did = their_public_did ,
@@ -940,7 +952,9 @@ def _get_connections_serialize(
940
952
connection_protocol ,
941
953
invitation_key ,
942
954
invitation_msg_id ,
955
+ limit ,
943
956
my_did ,
957
+ offset ,
944
958
state ,
945
959
their_did ,
946
960
their_public_did ,
@@ -980,10 +994,18 @@ def _get_connections_serialize(
980
994
981
995
_query_params .append (("invitation_msg_id" , invitation_msg_id ))
982
996
997
+ if limit is not None :
998
+
999
+ _query_params .append (("limit" , limit ))
1000
+
983
1001
if my_did is not None :
984
1002
985
1003
_query_params .append (("my_did" , my_did ))
986
1004
1005
+ if offset is not None :
1006
+
1007
+ _query_params .append (("offset" , offset ))
1008
+
987
1009
if state is not None :
988
1010
989
1011
_query_params .append (("state" , state ))
0 commit comments