Package | Description |
---|---|
com.google.api.services.drive | |
com.google.api.services.drive.model |
Modifier and Type | Method and Description |
---|---|
Drive.Replies.Create |
Drive.Replies.create(java.lang.String fileId,
java.lang.String commentId,
Reply content)
Creates a new reply to a comment.
|
Drive.Replies.Update |
Drive.Replies.update(java.lang.String fileId,
java.lang.String commentId,
java.lang.String replyId,
Reply content)
Updates a reply with patch semantics.
|
Constructor and Description |
---|
Create(java.lang.String fileId,
java.lang.String commentId,
Reply content)
Creates a new reply to a comment.
|
Update(java.lang.String fileId,
java.lang.String commentId,
java.lang.String replyId,
Reply content)
Updates a reply with patch semantics.
|
Modifier and Type | Method and Description |
---|---|
Reply |
Reply.clone() |
Reply |
Reply.set(java.lang.String fieldName,
java.lang.Object value) |
Reply |
Reply.setAction(java.lang.String action)
The action the reply performed to the parent comment.
|
Reply |
Reply.setAuthor(User author)
The user who created the reply.
|
Reply |
Reply.setContent(java.lang.String content)
The plain text content of the reply.
|
Reply |
Reply.setCreatedTime(com.google.api.client.util.DateTime createdTime)
The time at which the reply was created (RFC 3339 date-time).
|
Reply |
Reply.setDeleted(java.lang.Boolean deleted)
Whether the reply has been deleted.
|
Reply |
Reply.setHtmlContent(java.lang.String htmlContent)
The content of the reply with HTML formatting.
|
Reply |
Reply.setId(java.lang.String id)
The ID of the reply.
|
Reply |
Reply.setKind(java.lang.String kind)
Identifies what kind of resource this is.
|
Reply |
Reply.setModifiedTime(com.google.api.client.util.DateTime modifiedTime)
The last time the reply was modified (RFC 3339 date-time).
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Reply> |
Comment.getReplies()
The full list of replies to the comment in chronological order.
|
java.util.List<Reply> |
ReplyList.getReplies()
The list of replies.
|
Modifier and Type | Method and Description |
---|---|
Comment |
Comment.setReplies(java.util.List<Reply> replies)
The full list of replies to the comment in chronological order.
|
ReplyList |
ReplyList.setReplies(java.util.List<Reply> replies)
The list of replies.
|