Module Values.BatchDeleteTaxRegistrationErrorSource

The error object for representing failures in the BatchDeleteTaxRegistration operation.

Sourcetype nonrec t = {
  1. accountId : AccountId.t option;
    (*

    The unique account identifier for the account whose tax registration couldn't be deleted during the BatchDeleteTaxRegistration operation.

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

    The error code for an individual failure in BatchDeleteTaxRegistration operation.

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

    The error message for an individual failure in the BatchDeleteTaxRegistration operation.

    *)
}
Sourceval make : ?accountId:??? -> ?code:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AccountId.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