Size of upload. Returns: Size of the body, or None of the size is unknown.
(self)
| 326 | return "application/octet-stream" |
| 327 | |
| 328 | def size(self): |
| 329 | """Size of upload. |
| 330 | |
| 331 | Returns: |
| 332 | Size of the body, or None of the size is unknown. |
| 333 | """ |
| 334 | return None |
| 335 | |
| 336 | def resumable(self): |
| 337 | """Whether this upload is resumable. |
no outgoing calls
no test coverage detected