Convert the response wire format into a Python object. Args: resp: httplib2.Response, the HTTP response headers and status content: string, the body of the HTTP response Returns: The body de-serialized as a Python object. Raises: goo
(self, resp, content)
| 79 | _abstract() |
| 80 | |
| 81 | def response(self, resp, content): |
| 82 | """Convert the response wire format into a Python object. |
| 83 | |
| 84 | Args: |
| 85 | resp: httplib2.Response, the HTTP response headers and status |
| 86 | content: string, the body of the HTTP response |
| 87 | |
| 88 | Returns: |
| 89 | The body de-serialized as a Python object. |
| 90 | |
| 91 | Raises: |
| 92 | googleapiclient.errors.HttpError if a non 2xx response is received. |
| 93 | """ |
| 94 | _abstract() |
| 95 | |
| 96 | |
| 97 | class BaseModel(Model): |