Module Values.FileSource

Returns information about a file in a repository.

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

    The blob ID that contains the file information.

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

    The fully qualified path to the file in the repository.

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

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

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

    The extrapolated file mode permissions for the file. Valid values include EXECUTABLE and NORMAL.

    *)
}
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