Class RepliesResource
The "replies" collection of methods.
public class RepliesResource
- Inheritance
-
RepliesResource
- Inherited Members
Constructors
RepliesResource(IClientService)
Constructs a new resource.
public RepliesResource(IClientService service)
Parameters
service
IClientService
Methods
Create(Reply, string, string)
Creates a new reply to a comment.
public virtual RepliesResource.CreateRequest Create(Reply body, string fileId, string commentId)
Parameters
body
ReplyThe body of the request.
fileId
stringThe ID of the file.
commentId
stringThe ID of the comment.
Returns
Delete(string, string, string)
Deletes a reply.
public virtual RepliesResource.DeleteRequest Delete(string fileId, string commentId, string replyId)
Parameters
fileId
stringThe ID of the file.
commentId
stringThe ID of the comment.
replyId
stringThe ID of the reply.
Returns
Get(string, string, string)
Gets a reply by ID.
public virtual RepliesResource.GetRequest Get(string fileId, string commentId, string replyId)
Parameters
fileId
stringThe ID of the file.
commentId
stringThe ID of the comment.
replyId
stringThe ID of the reply.
Returns
List(string, string)
Lists a comment's replies.
public virtual RepliesResource.ListRequest List(string fileId, string commentId)
Parameters
Returns
Update(Reply, string, string, string)
Updates a reply with patch semantics.
public virtual RepliesResource.UpdateRequest Update(Reply body, string fileId, string commentId, string replyId)
Parameters
body
ReplyThe body of the request.
fileId
stringThe ID of the file.
commentId
stringThe ID of the comment.
replyId
stringThe ID of the reply.