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 768efc0 commit 3e7b673Copy full SHA for 3e7b673
boxsdk/object/base_api_json_object.py
@@ -1,6 +1,7 @@
1
# coding: utf-8
2
3
from __future__ import unicode_literals, absolute_import
4
+import copy
5
import six
6
7
from ..util.translator import Translator
@@ -61,3 +62,12 @@ def __repr__(self):
61
62
def _description(self):
63
"""Return a description of the object if one exists."""
64
return ""
65
+
66
+ @property
67
+ def response_object(self):
68
+ """
69
+ Return the JSON object representing the object returned from a Box API request.
70
+ :rtype:
71
+ `dict`
72
73
+ return copy.deepcopy(self._response_object)
0 commit comments