Lines Matching refs:body_value
53 def request(self, headers, path_params, query_params, body_value): argument
123 def request(self, headers, path_params, query_params, body_value): argument
149 if body_value is not None:
151 body_value = self.serialize(body_value)
152 self._log_request(headers, path_params, query, body_value)
153 return (headers, path_params, query, body_value)
214 def serialize(self, body_value): argument
256 def serialize(self, body_value): argument
257 if (isinstance(body_value, dict) and 'data' not in body_value and
259 body_value = {'data': body_value}
260 return json.dumps(body_value)
337 def serialize(self, body_value): argument
338 return body_value.SerializeToString()