Module Values.GetMergeCommitOutputSource

Returns information about a specified merge commit.

Sourcetype nonrec t = {
  1. sourceCommitId : ObjectId.t option;
    (*

    The commit ID of the source commit specifier that was used in the merge evaluation.

    *)
  2. destinationCommitId : ObjectId.t option;
    (*

    The commit ID of the destination commit specifier that was used in the merge evaluation.

    *)
  3. baseCommitId : ObjectId.t option;
    (*

    The commit ID of the merge base.

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

    The commit ID for the merge commit created when the source branch was merged into the destination branch. If the fast-forward merge strategy was used, there is no merge commit.

    *)
}
Sourcetype nonrec error = [
  1. | `CommitDoesNotExistException of CommitDoesNotExistException.t
  2. | `CommitRequiredException of CommitRequiredException.t
  3. | `EncryptionIntegrityChecksFailedException of EncryptionIntegrityChecksFailedException.t
  4. | `EncryptionKeyAccessDeniedException of EncryptionKeyAccessDeniedException.t
  5. | `EncryptionKeyDisabledException of EncryptionKeyDisabledException.t
  6. | `EncryptionKeyNotFoundException of EncryptionKeyNotFoundException.t
  7. | `EncryptionKeyUnavailableException of EncryptionKeyUnavailableException.t
  8. | `InvalidCommitException of InvalidCommitException.t
  9. | `InvalidConflictDetailLevelException of InvalidConflictDetailLevelException.t
  10. | `InvalidConflictResolutionStrategyException of InvalidConflictResolutionStrategyException.t
  11. | `InvalidRepositoryNameException of InvalidRepositoryNameException.t
  12. | `RepositoryDoesNotExistException of RepositoryDoesNotExistException.t
  13. | `RepositoryNameRequiredException of RepositoryNameRequiredException.t
  14. | `Unknown_operation_error of string * string option
]
Sourceval make : ?sourceCommitId:??? -> ?destinationCommitId:??? -> ?baseCommitId:??? -> ?mergedCommitId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `CommitDoesNotExistException of unit | `CommitRequiredException of unit | `EncryptionIntegrityChecksFailedException of unit | `EncryptionKeyAccessDeniedException of unit | `EncryptionKeyDisabledException of unit | `EncryptionKeyNotFoundException of unit | `EncryptionKeyUnavailableException of unit | `InvalidCommitException of unit | `InvalidConflictDetailLevelException of unit | `InvalidConflictResolutionStrategyException of unit | `InvalidRepositoryNameException of unit | `RepositoryDoesNotExistException of unit | `RepositoryNameRequiredException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `CommitDoesNotExistException of unit | `CommitRequiredException of unit | `EncryptionIntegrityChecksFailedException of unit | `EncryptionKeyAccessDeniedException of unit | `EncryptionKeyDisabledException of unit | `EncryptionKeyNotFoundException of unit | `EncryptionKeyUnavailableException of unit | `InvalidCommitException of unit | `InvalidConflictDetailLevelException of unit | `InvalidConflictResolutionStrategyException of unit | `InvalidRepositoryNameException 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 ObjectId.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