Module Values.PutPartnerEventsResultEntrySource

The result of an event entry the partner submitted in this request. If the event was successfully submitted, the entry has the event ID in it. Otherwise, you can use the error code and error message to identify the problem with the entry.

Sourcetype nonrec t = {
  1. eventId : EventId.t option;
    (*

    The ID of the event.

    *)
  2. errorCode : ErrorCode.t option;
    (*

    The error code that indicates why the event submission failed.

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

    The error message that explains why the event submission failed.

    *)
}
Sourceval make : ?eventId:??? -> ?errorCode:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of EventId.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