Module Values.SolutionStackDescriptionSource

Describes the solution stack.

Sourcetype nonrec t = {
  1. solutionStackName : SolutionStackName.t option;
    (*

    The name of the solution stack.

    *)
  2. permittedFileTypes : SolutionStackFileTypeList.t option;
    (*

    The permitted file types allowed for a solution stack.

    *)
}
Sourceval make : ?solutionStackName:??? -> ?permittedFileTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of FileTypeExtension.t ] list | `String of SolutionStackName.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