Values.ReplaceContentEntrySourceInformation about a replacement content entry in the conflict of a merge or pull request operation.
type nonrec t = {filePath : Path.t;The path of the conflicting file.
*)replacementType : ReplacementTypeEnum.t;The replacement type to use when determining how to resolve the conflict.
*)content : FileContent.t option;The base-64 encoded content to use when the replacement type is USE_NEW_CONTENT.
*)fileMode : FileModeTypeEnum.t option;The file mode to apply during conflict resoltion.
*)}val make :
?content:??? ->
?fileMode:??? ->
filePath:Path.t ->
replacementType:ReplacementTypeEnum.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Blob of FileContent.t | `Enum of string | `String of Path.t ])
list ]