Perform the actual Python object serialization. Args: body_value: object, the request body as a Python object. Returns: string, the body in serialized form.
(self, body_value)
| 241 | raise HttpError(resp, content) |
| 242 | |
| 243 | def serialize(self, body_value): |
| 244 | """Perform the actual Python object serialization. |
| 245 | |
| 246 | Args: |
| 247 | body_value: object, the request body as a Python object. |
| 248 | |
| 249 | Returns: |
| 250 | string, the body in serialized form. |
| 251 | """ |
| 252 | _abstract() |
| 253 | |
| 254 | def deserialize(self, content): |
| 255 | """Perform the actual deserialization from response string to Python |
no test coverage detected