Module Values.AppVersionSummarySource

Version of an application.

Sourcetype nonrec t = {
  1. appVersion : EntityVersion.t option;
    (*

    Version of an application.

    *)
  2. creationTime : TimeStamp.t option;
    (*

    Creation time of the application version.

    *)
  3. identifier : LongOptional.t option;
    (*

    Identifier of the application version.

    *)
  4. versionName : EntityVersion.t option;
    (*

    Name of the application version.

    *)
}
Sourceval make : ?appVersion:??? -> ?creationTime:??? -> ?identifier:??? -> ?versionName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of LongOptional.t | `String of EntityVersion.t | `Timestamp of TimeStamp.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