Module Values.AssetPropertySummarySource

Contains a summary of a property associated with an asset.

Sourcetype nonrec t = {
  1. id : ID.t option;
    (*

    The ID of the property.

    *)
  2. externalId : ExternalId.t option;
    (*

    The external ID of the property. For more information, see Using external IDs in the IoT SiteWise User Guide.

    *)
  3. alias : PropertyAlias.t option;
    (*

    The alias that identifies the property, such as an OPC-UA server data stream path (for example, /company/windfarm/3/turbine/7/temperature). For more information, see Mapping industrial data streams to asset properties in the IoT SiteWise User Guide.

    *)
  4. unit : PropertyUnit.t option;
    (*

    The unit of measure (such as Newtons or RPM) of the asset property.

    *)
  5. notification : PropertyNotification.t option;
  6. assetCompositeModelId : ID.t option;
    (*

    The ID of the composite model that contains the asset property.

    *)
  7. path : AssetPropertyPath.t option;
    (*

    The structured path to the property from the root of the asset.

    *)
}
Sourceval make : ?id:??? -> ?externalId:??? -> ?alias:??? -> ?unit:??? -> ?notification:??? -> ?assetCompositeModelId:??? -> ?path:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ID.t ]) list ] list | `String of ID.t | `Structure of (string * [> `Enum of string | `String of PropertyNotificationTopic.t ]) list ]) 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