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
raiseValueError("Invalid value for `process_param`, must not be `None`") # noqa: E501
131
73
132
74
self._process_param=process_param
133
75
134
-
@property
135
-
deflist(self):
136
-
"""Gets the list of this TransactionProcessRequest. # noqa: E501
137
-
138
-
139
-
:return: The list of this TransactionProcessRequest. # noqa: E501
140
-
:rtype: list[ProcessRequestImage]
141
-
"""
142
-
returnself._list
143
-
144
-
@list.setter
145
-
deflist(self, list):
146
-
"""Sets the list of this TransactionProcessRequest.
147
-
148
-
149
-
:param list: The list of this TransactionProcessRequest. # noqa: E501
150
-
:type list: list[ProcessRequestImage]
151
-
"""
152
-
153
-
self._list=list
154
-
155
-
@property
156
-
deflive_portrait(self):
157
-
"""Gets the live_portrait of this TransactionProcessRequest. # noqa: E501
158
-
159
-
Live portrait photo # noqa: E501
160
-
161
-
:return: The live_portrait of this TransactionProcessRequest. # noqa: E501
162
-
:rtype: str
163
-
"""
164
-
returnself._live_portrait
165
-
166
-
@live_portrait.setter
167
-
deflive_portrait(self, live_portrait):
168
-
"""Sets the live_portrait of this TransactionProcessRequest.
169
-
170
-
Live portrait photo # noqa: E501
171
-
172
-
:param live_portrait: The live_portrait of this TransactionProcessRequest. # noqa: E501
173
-
:type live_portrait: str
174
-
"""
175
-
176
-
self._live_portrait=live_portrait
177
-
178
-
@property
179
-
defext_portrait(self):
180
-
"""Gets the ext_portrait of this TransactionProcessRequest. # noqa: E501
181
-
182
-
Portrait photo from an external source # noqa: E501
183
-
184
-
:return: The ext_portrait of this TransactionProcessRequest. # noqa: E501
185
-
:rtype: str
186
-
"""
187
-
returnself._ext_portrait
188
-
189
-
@ext_portrait.setter
190
-
defext_portrait(self, ext_portrait):
191
-
"""Sets the ext_portrait of this TransactionProcessRequest.
192
-
193
-
Portrait photo from an external source # noqa: E501
194
-
195
-
:param ext_portrait: The ext_portrait of this TransactionProcessRequest. # noqa: E501
196
-
:type ext_portrait: str
197
-
"""
198
-
199
-
self._ext_portrait=ext_portrait
200
-
201
-
@property
202
-
defcontainer_list(self):
203
-
"""Gets the container_list of this TransactionProcessRequest. # noqa: E501
204
-
205
-
206
-
:return: The container_list of this TransactionProcessRequest. # noqa: E501
207
-
:rtype: ContainerList
208
-
"""
209
-
returnself._container_list
210
-
211
-
@container_list.setter
212
-
defcontainer_list(self, container_list):
213
-
"""Sets the container_list of this TransactionProcessRequest.
214
-
215
-
216
-
:param container_list: The container_list of this TransactionProcessRequest. # noqa: E501
217
-
:type container_list: ContainerList
218
-
"""
219
-
220
-
self._container_list=container_list
221
-
222
-
@property
223
-
defsystem_info(self):
224
-
"""Gets the system_info of this TransactionProcessRequest. # noqa: E501
225
-
226
-
227
-
:return: The system_info of this TransactionProcessRequest. # noqa: E501
228
-
:rtype: ProcessSystemInfo
229
-
"""
230
-
returnself._system_info
231
-
232
-
@system_info.setter
233
-
defsystem_info(self, system_info):
234
-
"""Sets the system_info of this TransactionProcessRequest.
235
-
236
-
237
-
:param system_info: The system_info of this TransactionProcessRequest. # noqa: E501
238
-
:type system_info: ProcessSystemInfo
239
-
"""
240
-
241
-
self._system_info=system_info
242
-
243
-
@property
244
-
defpass_back_object(self):
245
-
"""Gets the pass_back_object of this TransactionProcessRequest. # noqa: E501
246
-
247
-
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
248
-
249
-
:return: The pass_back_object of this TransactionProcessRequest. # noqa: E501
250
-
:rtype: dict(str, object)
251
-
"""
252
-
returnself._pass_back_object
253
-
254
-
@pass_back_object.setter
255
-
defpass_back_object(self, pass_back_object):
256
-
"""Sets the pass_back_object of this TransactionProcessRequest.
257
-
258
-
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
259
-
260
-
:param pass_back_object: The pass_back_object of this TransactionProcessRequest. # noqa: E501
0 commit comments