Module Values.PostCommentForComparedCommitOutputSource

Posts a comment on the comparison between two commits.

Sourcetype nonrec t = {
  1. repositoryName : RepositoryName.t option;
    (*

    The name of the repository where you posted a comment on the comparison between commits.

    *)
  2. beforeCommitId : CommitId.t option;
    (*

    In the directionality you established, the full commit ID of the before commit.

    *)
  3. afterCommitId : CommitId.t option;
    (*

    In the directionality you established, the full commit ID of the after commit.

    *)
  4. beforeBlobId : ObjectId.t option;
    (*

    In the directionality you established, the blob ID of the before blob.

    *)
  5. afterBlobId : ObjectId.t option;
    (*

    In the directionality you established, the blob ID of the after blob.

    *)
  6. location : Location.t option;
    (*

    The location of the comment in the comparison between the two commits.

    *)
  7. comment : Comment.t option;
    (*

    The content of the comment you posted.

    *)
}
Sourcetype nonrec error = [
  1. | `BeforeCommitIdAndAfterCommitIdAreSameException of BeforeCommitIdAndAfterCommitIdAreSameException.t
  2. | `ClientRequestTokenRequiredException of ClientRequestTokenRequiredException.t
  3. | `CommentContentRequiredException of CommentContentRequiredException.t
  4. | `CommentContentSizeLimitExceededException of CommentContentSizeLimitExceededException.t
  5. | `CommitDoesNotExistException of CommitDoesNotExistException.t
  6. | `CommitIdRequiredException of CommitIdRequiredException.t
  7. | `EncryptionIntegrityChecksFailedException of EncryptionIntegrityChecksFailedException.t
  8. | `EncryptionKeyAccessDeniedException of EncryptionKeyAccessDeniedException.t
  9. | `EncryptionKeyDisabledException of EncryptionKeyDisabledException.t
  10. | `EncryptionKeyNotFoundException of EncryptionKeyNotFoundException.t
  11. | `EncryptionKeyUnavailableException of EncryptionKeyUnavailableException.t
  12. | `IdempotencyParameterMismatchException of IdempotencyParameterMismatchException.t
  13. | `InvalidClientRequestTokenException of InvalidClientRequestTokenException.t
  14. | `InvalidCommitIdException of InvalidCommitIdException.t
  15. | `InvalidFileLocationException of InvalidFileLocationException.t
  16. | `InvalidFilePositionException of InvalidFilePositionException.t
  17. | `InvalidPathException of InvalidPathException.t
  18. | `InvalidRelativeFileVersionEnumException of InvalidRelativeFileVersionEnumException.t
  19. | `InvalidRepositoryNameException of InvalidRepositoryNameException.t
  20. | `PathDoesNotExistException of PathDoesNotExistException.t
  21. | `PathRequiredException of PathRequiredException.t
  22. | `RepositoryDoesNotExistException of RepositoryDoesNotExistException.t
  23. | `RepositoryNameRequiredException of RepositoryNameRequiredException.t
  24. | `Unknown_operation_error of string * string option
]
Sourceval make : ?repositoryName:??? -> ?beforeCommitId:??? -> ?afterCommitId:??? -> ?beforeBlobId:??? -> ?afterBlobId:??? -> ?location:??? -> ?comment:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BeforeCommitIdAndAfterCommitIdAreSameException of unit | `ClientRequestTokenRequiredException of unit | `CommentContentRequiredException of unit | `CommentContentSizeLimitExceededException of unit | `CommitDoesNotExistException of unit | `CommitIdRequiredException of unit | `EncryptionIntegrityChecksFailedException of unit | `EncryptionKeyAccessDeniedException of unit | `EncryptionKeyDisabledException of unit | `EncryptionKeyNotFoundException of unit | `EncryptionKeyUnavailableException of unit | `IdempotencyParameterMismatchException of unit | `InvalidClientRequestTokenException of unit | `InvalidCommitIdException of unit | `InvalidFileLocationException of unit | `InvalidFilePositionException of unit | `InvalidPathException of unit | `InvalidRelativeFileVersionEnumException of unit | `InvalidRepositoryNameException of unit | `PathDoesNotExistException of unit | `PathRequiredException of unit | `RepositoryDoesNotExistException of unit | `RepositoryNameRequiredException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BeforeCommitIdAndAfterCommitIdAreSameException of unit | `ClientRequestTokenRequiredException of unit | `CommentContentRequiredException of unit | `CommentContentSizeLimitExceededException of unit | `CommitDoesNotExistException of unit | `CommitIdRequiredException of unit | `EncryptionIntegrityChecksFailedException of unit | `EncryptionKeyAccessDeniedException of unit | `EncryptionKeyDisabledException of unit | `EncryptionKeyNotFoundException of unit | `EncryptionKeyUnavailableException of unit | `IdempotencyParameterMismatchException of unit | `InvalidClientRequestTokenException of unit | `InvalidCommitIdException of unit | `InvalidFileLocationException of unit | `InvalidFilePositionException of unit | `InvalidPathException of unit | `InvalidRelativeFileVersionEnumException of unit | `InvalidRepositoryNameException of unit | `PathDoesNotExistException of unit | `PathRequiredException of unit | `RepositoryDoesNotExistException of unit | `RepositoryNameRequiredException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RepositoryName.t | `Structure of (string * [> `Boolean of IsCommentDeleted.t | `Enum of string | `List of [> `String of ReactionValue.t ] list | `Long of Position.t | `Map of ([> `String of ReactionValue.t ] * [> `Integer of Count.t ]) list | `String of Path.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