Module Values.BatchPutAssetPropertyErrorSource

Contains error information from updating a batch of asset property values.

Sourcetype nonrec t = {
  1. errorCode : BatchPutAssetPropertyValueErrorCode.t option;
    (*

    The error code.

    *)
  2. errorMessage : ErrorMessage.t option;
    (*

    The associated error message.

    *)
  3. timestamps : Timestamps.t option;
    (*

    A list of timestamps for each error, if any.

    *)
}
Sourceval make : ?errorCode:??? -> ?errorMessage:??? -> ?timestamps:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Integer of OffsetInNanos.t | `Long of TimeInSeconds.t ]) list ] list | `String of ErrorMessage.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