Module Values.SubModuleSource

Returns information about a submodule reference in a repository folder.

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

    The commit ID that contains the reference to the submodule.

    *)
  2. absolutePath : Path.t option;
    (*

    The fully qualified path to the folder that contains the reference to the submodule.

    *)
  3. relativePath : Path.t option;
    (*

    The relative path of the submodule from the folder where the query originated.

    *)
}
Sourceval make : ?commitId:??? -> ?absolutePath:??? -> ?relativePath:??? -> unit -> 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