Module Values.GetApplicationVersionRequestSource

Returns details about a specific version of a specific application.

Sourcetype nonrec t = {
  1. applicationId : Identifier.t;
    (*

    The unique identifier of the application.

    *)
  2. applicationVersion : Version.t;
    (*

    The specific version of the application.

    *)
}
Sourceval context_ : string
Sourceval make : applicationId:Identifier.t -> applicationVersion:Version.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Version.t | `String of Identifier.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