Module Values.DevEnvironmentRepositorySummarySource

Information about the source repsitory for a Dev Environment.

Sourcetype nonrec t = {
  1. repositoryName : SourceRepositoryNameString.t option;
    (*

    The name of the source repository.

    *)
  2. branchName : SourceRepositoryBranchString.t option;
    (*

    The name of the branch in a source repository cloned into the Dev Environment.

    *)
}
Sourceval make : ?repositoryName:??? -> ?branchName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SourceRepositoryNameString.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