We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb969c0 commit 60a4579Copy full SHA for 60a4579
bunq/sdk/context.py
@@ -258,7 +258,7 @@ def to_json(self):
258
"""
259
Serializes an ApiInstance to JSON data
260
261
- :return: str
+ :rtype: str
262
263
return converter.class_to_json(self)
264
@@ -267,8 +267,9 @@ def from_json(cls, data):
267
268
Creates an ApiContext instance from JSON data
269
270
- :param data: str
271
- :return: ApiContext
+ :type data: str
+
272
+ :rtype: ApiContext
273
274
return converter.json_to_class(ApiContext, data)
275
0 commit comments