Module Values.SourceCodeSource

Object containing source code information that is linked to an application component.

Sourcetype nonrec t = {
  1. location : Location.t option;
    (*

    The repository name for the source code.

    *)
  2. projectName : ProjectName.t option;
    (*

    The name of the project.

    *)
  3. sourceVersion : SourceVersion.t option;
    (*

    The branch of the source code.

    *)
  4. versionControl : VersionControl.t option;
    (*

    The type of repository to use for the source code.

    *)
}
Sourceval make : ?location:??? -> ?projectName:??? -> ?sourceVersion:??? -> ?versionControl:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Location.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