Modifier and Type | Class and Description |
---|---|
class |
Drive.Replies.Delete |
class |
Drive.Replies.Get |
class |
Drive.Replies.Insert |
class |
Drive.Replies.List |
class |
Drive.Replies.Patch |
class |
Drive.Replies.Update |
Constructor and Description |
---|
Drive.Replies() |
Modifier and Type | Method and Description |
---|---|
Drive.Replies.Delete |
delete(String fileId,
String commentId,
String replyId)
Deletes a reply.
|
Drive.Replies.Get |
get(String fileId,
String commentId,
String replyId)
Gets a reply.
|
Drive.Replies.Insert |
insert(String fileId,
String commentId,
CommentReply content)
Creates a new reply to the given comment.
|
Drive.Replies.List |
list(String fileId,
String commentId)
Lists all of the replies to a comment.
|
Drive.Replies.Patch |
patch(String fileId,
String commentId,
String replyId,
CommentReply content)
Updates an existing reply.
|
Drive.Replies.Update |
update(String fileId,
String commentId,
String replyId,
CommentReply content)
Updates an existing reply.
|
public Drive.Replies.Delete delete(String fileId, String commentId, String replyId) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.fileId
- The ID of the file.commentId
- The ID of the comment.replyId
- The ID of the reply.IOException
public Drive.Replies.Get get(String fileId, String commentId, String replyId) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.fileId
- The ID of the file.commentId
- The ID of the comment.replyId
- The ID of the reply.IOException
public Drive.Replies.Insert insert(String fileId, String commentId, CommentReply content) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.fileId
- The ID of the file.commentId
- The ID of the comment.content
- the CommentReply
IOException
public Drive.Replies.List list(String fileId, String commentId) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.fileId
- The ID of the file.commentId
- The ID of the comment.IOException
public Drive.Replies.Patch patch(String fileId, String commentId, String replyId, CommentReply content) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.fileId
- The ID of the file.commentId
- The ID of the comment.replyId
- The ID of the reply.content
- the CommentReply
IOException
public Drive.Replies.Update update(String fileId, String commentId, String replyId, CommentReply content) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.fileId
- The ID of the file.commentId
- The ID of the comment.replyId
- The ID of the reply.content
- the CommentReply
IOException