Module Values.FolderSource

Returns information about a folder in a repository.

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

    The full SHA-1 pointer of the tree information for the commit that contains the folder.

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

    The fully qualified path of the folder in the repository.

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

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

    *)
}
Sourceval make : ?treeId:??? -> ?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