Module Values_0.FailedRequestSource

Request for which contact failed to be generated.

Sourcetype nonrec t = {
  1. requestIdentifier : RequestIdentifier.t option;
    (*

    Request identifier provided in the API call in the ContactDataRequest to create a contact.

    *)
  2. failureReasonCode : FailureReasonCode.t option;
    (*

    Reason code for the failure.

    *)
  3. failureReasonMessage : String_.t option;
    (*

    Why the request to create a contact failed.

    *)
}
Sourceval make : ?requestIdentifier:??? -> ?failureReasonCode:??? -> ?failureReasonMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RequestIdentifier.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