Module Values.ProjectSummarySource

Information about a project.

Sourcetype nonrec t = {
  1. name : String_.t option;
    (*

    The name of the project in the space.

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

    The friendly name displayed to users of the project in Amazon CodeCatalyst.

    *)
  3. description : String_.t option;
    (*

    The description of the project.

    *)
}
Sourceval make : ?name:??? -> ?displayName:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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