Module Values.BlobMetadataSource

Returns information about a specific Git blob object.

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

    The full ID of the blob.

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

    The path to the blob and associated file name, if any.

    *)
  3. mode : Mode.t option;
    (*

    The file mode permissions of the blob. File mode permission codes include: 100644 indicates read/write 100755 indicates read/write/execute 160000 indicates a submodule 120000 indicates a symlink

    *)
}
Sourceval make : ?blobId:??? -> ?path:??? -> ?mode:??? -> 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