Module Values_1.EdgeModelSource

The model on the edge device.

Sourcetype nonrec t = {
  1. modelName : Values_0.EntityName.t option;
    (*

    The name of the model.

    *)
  2. modelVersion : Values_0.EdgeVersion.t option;
    (*

    The model version.

    *)
  3. latestSampleTime : Values_0.Timestamp.t option;
    (*

    The timestamp of the last data sample taken.

    *)
  4. latestInference : Values_0.Timestamp.t option;
    (*

    The timestamp of the last inference that was made.

    *)
}
Sourceval make : ?modelName:??? -> ?modelVersion:??? -> ?latestSampleTime:??? -> ?latestInference:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.EntityName.t | `Timestamp of Values_0.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