55
66 No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
77
8- The version of the OpenAPI document: v0.12.1
8+ The version of the OpenAPI document: v0.12.2b1
99 Generated by OpenAPI Generator (https://openapi-generator.tech)
1010
1111 Do not edit the class manually.
@@ -853,9 +853,15 @@ async def get_connections(
853853 Optional [StrictStr ],
854854 Field (description = "Identifier of the associated Invitation Message" ),
855855 ] = None ,
856+ limit : Annotated [
857+ Optional [StrictInt ], Field (description = "Number of results to return" )
858+ ] = None ,
856859 my_did : Annotated [
857860 Optional [Annotated [str , Field (strict = True )]], Field (description = "My DID" )
858861 ] = None ,
862+ offset : Annotated [
863+ Optional [StrictInt ], Field (description = "Offset for pagination" )
864+ ] = None ,
859865 state : Annotated [
860866 Optional [StrictStr ], Field (description = "Connection state" )
861867 ] = None ,
@@ -893,8 +899,12 @@ async def get_connections(
893899 :type invitation_key: str
894900 :param invitation_msg_id: Identifier of the associated Invitation Message
895901 :type invitation_msg_id: str
902+ :param limit: Number of results to return
903+ :type limit: int
896904 :param my_did: My DID
897905 :type my_did: str
906+ :param offset: Offset for pagination
907+ :type offset: int
898908 :param state: Connection state
899909 :type state: str
900910 :param their_did: Their DID
@@ -911,7 +921,9 @@ async def get_connections(
911921 connection_protocol = connection_protocol ,
912922 invitation_key = invitation_key ,
913923 invitation_msg_id = invitation_msg_id ,
924+ limit = limit ,
914925 my_did = my_did ,
926+ offset = offset ,
915927 state = state ,
916928 their_did = their_did ,
917929 their_public_did = their_public_did ,
@@ -940,7 +952,9 @@ def _get_connections_serialize(
940952 connection_protocol ,
941953 invitation_key ,
942954 invitation_msg_id ,
955+ limit ,
943956 my_did ,
957+ offset ,
944958 state ,
945959 their_did ,
946960 their_public_did ,
@@ -980,10 +994,18 @@ def _get_connections_serialize(
980994
981995 _query_params .append (("invitation_msg_id" , invitation_msg_id ))
982996
997+ if limit is not None :
998+
999+ _query_params .append (("limit" , limit ))
1000+
9831001 if my_did is not None :
9841002
9851003 _query_params .append (("my_did" , my_did ))
9861004
1005+ if offset is not None :
1006+
1007+ _query_params .append (("offset" , offset ))
1008+
9871009 if state is not None :
9881010
9891011 _query_params .append (("state" , state ))
0 commit comments