Module Values.AlarmModelSummarySource

Contains a summary of an alarm model.

Sourcetype nonrec t = {
  1. creationTime : Timestamp.t option;
    (*

    The time the alarm model was created, in the Unix epoch format.

    *)
  2. alarmModelDescription : AlarmModelDescription.t option;
    (*

    The description of the alarm model.

    *)
  3. alarmModelName : AlarmModelName.t option;
    (*

    The name of the alarm model.

    *)
}
Sourceval make : ?creationTime:??? -> ?alarmModelDescription:??? -> ?alarmModelName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AlarmModelDescription.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