Module Values.EngineVersionsSummarySource

A subset of information about the engine version for a specific application.

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

    The type of target platform for the application.

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

    The version of the engine type used by the application.

    *)
}
Sourceval make : ?engineType:??? -> ?engineVersion:??? -> 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