/// <summary>Modifies the top-level comment in a comment thread.</summary>
 /// <param name="body">The body of the request.</param>
 /// <param name="part">The part parameter specifies a comma-separated list of commentThread resource properties that the
 /// API response will include. You must at least include the snippet part in the parameter value since that part
 /// contains all of the properties that the API request can update.</param>
 public virtual CommentThreadsResource.UpdateRequest Update(CommentThread body, string part)
 {
     return(new CommentThreadsResource.UpdateRequest(this.service, body, part));
 }
 /// <summary>Creates a new top-level comment. To add a reply to an existing comment, use the comments.insert
 /// method instead.</summary>
 /// <param name="body">The body of the request.</param>
 /// <param name="part">The part parameter identifies the properties that the API response will include. Set the
 /// parameter value to snippet. The snippet part has a quota cost of 2 units.</param>
 public virtual CommentThreadsResource.InsertRequest Insert(CommentThread body, string part)
 {
     return(new CommentThreadsResource.InsertRequest(this.service, body, part));
 }