Module Values.RevisionSource

Revision detail data for a commit and push that activates a sync attempt

Sourcetype nonrec t = {
  1. branch : GitBranchName.t option;
    (*

    The repository branch.

    *)
  2. directory : String_.t option;
    (*

    The repository directory changed by a commit and push that activated the sync attempt.

    *)
  3. repositoryName : RepositoryName.t option;
    (*

    The repository name.

    *)
  4. repositoryProvider : RepositoryProvider.t option;
    (*

    The repository provider.

    *)
  5. sha : SHA.t option;
    (*

    The secure hash algorithm (SHA) hash for the revision.

    *)
}
Sourceval make : ?branch:??? -> ?directory:??? -> ?repositoryName:??? -> ?repositoryProvider:??? -> ?sha:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of GitBranchName.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