Module Values.ReplaceContentEntrySource

Information about a replacement content entry in the conflict of a merge or pull request operation.

Sourcetype nonrec t = {
  1. filePath : Path.t;
    (*

    The path of the conflicting file.

    *)
  2. replacementType : ReplacementTypeEnum.t;
    (*

    The replacement type to use when determining how to resolve the conflict.

    *)
  3. content : FileContent.t option;
    (*

    The base-64 encoded content to use when the replacement type is USE_NEW_CONTENT.

    *)
  4. fileMode : FileModeTypeEnum.t option;
    (*

    The file mode to apply during conflict resoltion.

    *)
}
Sourceval context_ : string
Sourceval make : ?content:??? -> ?fileMode:??? -> filePath:Path.t -> replacementType:ReplacementTypeEnum.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of FileContent.t | `Enum of string | `String of Path.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