Module Values.PostCommentReplyInputSource

Posts a comment in reply to an existing comment on a comparison between commits or a pull request.

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

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

    *)
  2. clientRequestToken : ClientRequestToken.t option;
    (*

    A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.

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

    The contents of your reply to a comment.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientRequestToken:??? -> inReplyTo: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