(self, input1)
| 208 | return response.text |
| 209 | |
| 210 | def _postVoidOutput(self, input1): |
| 211 | self.query_parameters['output'] = 'void' |
| 212 | responseJson = self.client.postJsonHelper(self.url, input1, **self.query_parameters) |
| 213 | if 'error' in responseJson: |
| 214 | raise ApiError(responseJson['error']['message']) |
| 215 | else: |
| 216 | return AsyncResponse(responseJson) |
no test coverage detected