public class Drive.Replies
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
class |
Drive.Replies.Create |
class |
Drive.Replies.Delete |
class |
Drive.Replies.Get |
class |
Drive.Replies.List |
class |
Drive.Replies.Update |
Constructor and Description |
---|
Drive.Replies() |
Modifier and Type | Method and Description |
---|---|
Drive.Replies.Create |
create(java.lang.String fileId,
java.lang.String commentId,
Reply content)
Creates a new reply to a comment.
|
Drive.Replies.Delete |
delete(java.lang.String fileId,
java.lang.String commentId,
java.lang.String replyId)
Deletes a reply.
|
Drive.Replies.Get |
get(java.lang.String fileId,
java.lang.String commentId,
java.lang.String replyId)
Gets a reply by ID.
|
Drive.Replies.List |
list(java.lang.String fileId,
java.lang.String commentId)
Lists a comment's replies.
|
Drive.Replies.Update |
update(java.lang.String fileId,
java.lang.String commentId,
java.lang.String replyId,
Reply content)
Updates a reply with patch semantics.
|
public Drive.Replies.Create create(java.lang.String fileId, java.lang.String commentId, Reply content) throws java.io.IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.fileId
- The ID of the file.commentId
- The ID of the comment.content
- the Reply
java.io.IOException
public Drive.Replies.Delete delete(java.lang.String fileId, java.lang.String commentId, java.lang.String replyId) throws java.io.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.java.io.IOException
public Drive.Replies.Get get(java.lang.String fileId, java.lang.String commentId, java.lang.String replyId) throws java.io.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.java.io.IOException
public Drive.Replies.List list(java.lang.String fileId, java.lang.String commentId) throws java.io.IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.fileId
- The ID of the file.commentId
- The ID of the comment.java.io.IOException
public Drive.Replies.Update update(java.lang.String fileId, java.lang.String commentId, java.lang.String replyId, Reply content) throws java.io.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 Reply
java.io.IOException