Perform the actual deserialization from response string to Python object. Args: content: string, the body of the HTTP response Returns: The body de-serialized as a Python object.
(self, content)
| 252 | _abstract() |
| 253 | |
| 254 | def deserialize(self, content): |
| 255 | """Perform the actual deserialization from response string to Python |
| 256 | object. |
| 257 | |
| 258 | Args: |
| 259 | content: string, the body of the HTTP response |
| 260 | |
| 261 | Returns: |
| 262 | The body de-serialized as a Python object. |
| 263 | """ |
| 264 | _abstract() |
| 265 | |
| 266 | |
| 267 | class JsonModel(BaseModel): |