Module Values.FileMetadataSource

A file to be added, updated, or deleted as part of a commit.

Sourcetype nonrec t = {
  1. absolutePath : Path.t option;
    (*

    The full path to the file to be added or updated, including the name of the file.

    *)
  2. blobId : ObjectId.t option;
    (*

    The blob ID that contains the file information.

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

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

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