Lines Matching refs:body_value
55 def request(self, headers, path_params, query_params, body_value): argument
125 def request(self, headers, path_params, query_params, body_value): argument
159 if body_value is not None:
161 body_value = self.serialize(body_value)
162 self._log_request(headers, path_params, query, body_value)
163 return (headers, path_params, query, body_value)
224 def serialize(self, body_value): argument
267 def serialize(self, body_value): argument
269 isinstance(body_value, dict)
270 and "data" not in body_value
273 body_value = {"data": body_value}
274 return json.dumps(body_value)
354 def serialize(self, body_value): argument
355 return body_value.SerializeToString()