You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Gets the pass_back_object of this ProcessRequest. # noqa: E501
134
+
135
+
Free-form object to be included in response. Must be object, not list or simple value. Do not affect document processing. Use it freely to pass your app params. Stored in process logs. # noqa: E501
136
+
137
+
:return: The pass_back_object of this ProcessRequest. # noqa: E501
138
+
:rtype: dict(str, object)
139
+
"""
140
+
returnself._pass_back_object
141
+
142
+
@pass_back_object.setter
143
+
defpass_back_object(self, pass_back_object):
144
+
"""Sets the pass_back_object of this ProcessRequest.
145
+
146
+
Free-form object to be included in response. Must be object, not list or simple value. Do not affect document processing. Use it freely to pass your app params. Stored in process logs. # noqa: E501
147
+
148
+
:param pass_back_object: The pass_back_object of this ProcessRequest. # noqa: E501
0 commit comments