Module Values.SourceReferenceSource

Contains information about the source reference in a code repository, such as a branch, tag, or commit.

Sourcetype nonrec t = {
  1. type_ : SourceReferenceType.t;
    (*

    The type of source reference, such as branch, tag, or commit.

    *)
  2. value : SourceReferenceValue.t;
    (*

    The value of the source reference, such as the branch name, tag name, or commit ID.

    *)
}
Sourceval context_ : string
Sourceval make : type_:SourceReferenceType.t -> value:SourceReferenceValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SourceReferenceValue.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