Module Values.SymbolicLinkSource

Returns information about a symbolic link in a repository folder.

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

    The blob ID that contains the information about the symbolic link.

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

    The fully qualified path to the folder that contains the symbolic link.

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

    The relative path of the symbolic link from the folder where the query originated.

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

    The file mode permissions of the blob that cotains information about the symbolic link.

    *)
}
Sourceval make : ?blobId:??? -> ?absolutePath:??? -> ?relativePath:??? -> ?fileMode:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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