Module Values.BatchDeviceErrorResponseItemSource

Contains error information for a device operation that failed in a batch device request.

Sourcetype nonrec t = {
  1. field : GenericString.t option;
    (*

    The field that caused the error.

    *)
  2. reason : GenericString.t option;
    (*

    A description of why the device operation failed.

    *)
  3. appId : GenericString.t option;
    (*

    The application ID of the device that failed to be processed.

    *)
}
Sourceval make : ?field:??? -> ?reason:??? -> ?appId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GenericString.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