Module Values.UpdateCommentInputSource

Replaces the contents of a comment.

Sourcetype nonrec t = {
  1. commentId : CommentId.t;
    (*

    The system-generated ID of the comment you want to update. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.

    *)
  2. content : Content.t;
    (*

    The updated content to replace the existing content of the comment.

    *)
}
Sourceval context_ : string
Sourceval make : commentId:CommentId.t -> content:Content.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CommentId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t