Module Values.PutAssetPropertyValueEntrySource

Contains a list of value updates for an asset property in the list of asset entries consumed by the BatchPutAssetPropertyValue API operation.

Sourcetype nonrec t = {
  1. entryId : EntryId.t;
    (*

    The user specified ID for the entry. You can use this ID to identify which entries failed.

    *)
  2. assetId : ID.t option;
    (*

    The ID of the asset to update.

    *)
  3. propertyId : ID.t option;
    (*

    The ID of the asset property for this entry.

    *)
  4. propertyAlias : AssetPropertyAlias.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.

    *)
  5. propertyValues : AssetPropertyValues.t;
    (*

    The list of property values to upload. You can specify up to 10 propertyValues array elements.

    *)
}
Sourceval context_ : string
Sourceval make : ?assetId:??? -> ?propertyId:??? -> ?propertyAlias:??? -> entryId:EntryId.t -> propertyValues:AssetPropertyValues.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Boolean of PropertyValueBooleanValue.t | `Double of PropertyValueDoubleValue.t | `Integer of PropertyValueIntegerValue.t | `Long of TimeInSeconds.t | `String of PropertyValueStringValue.t | `Structure of (string * [> `Enum of string ]) list ]) list ]) list ] list | `String of EntryId.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