addBook(drive_document_id=None, mime_type=None, name=None, upload_client_token=None)
Remove the book and its contents
addBook(drive_document_id=None, mime_type=None, name=None, upload_client_token=None)
Args:
drive_document_id: string, A drive document id. The upload_client_token must not be set.
mime_type: string, The document MIME type. It can be set only if the drive_document_id is set.
name: string, The document name. It can be set only if the drive_document_id is set.
upload_client_token: string, A parameter
Returns:
An object of the form:
{
"author": "A String",
"processingState": "A String",
"title": "A String",
"volumeId": "A String",
}
deleteBook(volumeId)
Remove the book and its contents Args: volumeId: string, The id of the book to be removed. (required)
updateBook(body=None)
Args:
body: object, The request body.
The object takes the form of:
{
"author": "A String",
"processingState": "A String",
"title": "A String",
"volumeId": "A String",
}
Returns:
An object of the form:
{
"author": "A String",
"processingState": "A String",
"title": "A String",
"volumeId": "A String",
}