Drive API v2 (revision 47)



Uses of Class
com.google.api.services.drive.model.CommentReply

Packages that use CommentReply
com.google.api.services.drive   
com.google.api.services.drive.model   
 

Uses of CommentReply in com.google.api.services.drive
 

Methods in com.google.api.services.drive with parameters of type CommentReply
 Drive.Replies.Insert Drive.Replies.insert(java.lang.String fileId, java.lang.String commentId, CommentReply content)
          Creates a new reply to the given comment.
 Drive.Replies.Patch Drive.Replies.patch(java.lang.String fileId, java.lang.String commentId, java.lang.String replyId, CommentReply content)
          Updates an existing reply.
 Drive.Replies.Update Drive.Replies.update(java.lang.String fileId, java.lang.String commentId, java.lang.String replyId, CommentReply content)
          Updates an existing reply.
 

Uses of CommentReply in com.google.api.services.drive.model
 

Methods in com.google.api.services.drive.model that return CommentReply
 CommentReply CommentReply.setAuthor(User author)
          The user who wrote this reply.
 CommentReply CommentReply.setContent(java.lang.String content)
          The plain text content used to create this reply.
 CommentReply CommentReply.setCreatedDate(DateTime createdDate)
          The date when this reply was first created.
 CommentReply CommentReply.setDeleted(java.lang.Boolean deleted)
          Whether this reply has been deleted.
 CommentReply CommentReply.setHtmlContent(java.lang.String htmlContent)
          HTML formatted content for this reply.
 CommentReply CommentReply.setKind(java.lang.String kind)
          This is always drive#commentReply.
 CommentReply CommentReply.setModifiedDate(DateTime modifiedDate)
          The date when this reply was last modified.
 CommentReply CommentReply.setReplyId(java.lang.String replyId)
          The ID of the reply.
 CommentReply CommentReply.setVerb(java.lang.String verb)
          The action this reply performed to the parent comment.
 

Methods in com.google.api.services.drive.model that return types with arguments of type CommentReply
 java.util.List<CommentReply> CommentReplyList.getItems()
          List of reply.
 java.util.List<CommentReply> Comment.getReplies()
          Replies to this post.
 

Method parameters in com.google.api.services.drive.model with type arguments of type CommentReply
 CommentReplyList CommentReplyList.setItems(java.util.List<CommentReply> items)
          List of reply.
 Comment Comment.setReplies(java.util.List<CommentReply> replies)
          Replies to this post.