Module Values.DeleteCommentContentOutputSource

Deletes the content of a comment made on a change, file, or commit in a repository.

Sourcetype nonrec t = {
  1. comment : Comment.t option;
    (*

    Information about the comment you just deleted.

    *)
}
Sourcetype nonrec error = [
  1. | `CommentDeletedException of CommentDeletedException.t
  2. | `CommentDoesNotExistException of CommentDoesNotExistException.t
  3. | `CommentIdRequiredException of CommentIdRequiredException.t
  4. | `InvalidCommentIdException of InvalidCommentIdException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?comment:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `CommentDeletedException of unit | `CommentDoesNotExistException of unit | `CommentIdRequiredException of unit | `InvalidCommentIdException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `CommentDeletedException of unit | `CommentDoesNotExistException of unit | `CommentIdRequiredException of unit | `InvalidCommentIdException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of IsCommentDeleted.t | `List of [> `String of ReactionValue.t ] list | `Map of ([> `String of ReactionValue.t ] * [> `Integer of Count.t ]) list | `String of CommentId.t | `Timestamp of CreationDate.t ]) list ]) 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