@@ -46,8 +46,8 @@ public static final class Builder {
4646 *
4747 * @param ipAddress The IP address associated with the device used
4848 * by the customer in the transaction.
49- * @param tag A string indicating the likelihood that a transaction may be
50- * fraudulent.
49+ * @param tag A string indicating the likelihood that a transaction may be
50+ * fraudulent.
5151 */
5252 public Builder (InetAddress ipAddress , Tag tag ) {
5353 if (ipAddress == null ) {
@@ -63,7 +63,7 @@ public Builder(InetAddress ipAddress, Tag tag) {
6363
6464 /**
6565 * @param chargebackCode A string which is provided by your payment processor
66- * indicating the reason for the chargeback.
66+ * indicating the reason for the chargeback.
6767 * @return The builder object.
6868 */
6969 public TransactionReport .Builder chargebackCode (String chargebackCode ) {
@@ -73,13 +73,13 @@ public TransactionReport.Builder chargebackCode(String chargebackCode) {
7373
7474 /**
7575 * @param maxmindId A unique eight character string identifying a minFraud
76- * Standard or Premium request. These IDs are returned in the maxmindID field
77- * of a response for a successful minFraud request. This field is not required,
78- * but you are encouraged to provide it, if possible.
76+ * Standard or Premium request. These IDs are returned in the maxmindID field
77+ * of a response for a successful minFraud request. This field is not required,
78+ * but you are encouraged to provide it, if possible.
7979 * @return The builder object.
8080 */
8181 public TransactionReport .Builder maxmindId (String maxmindId ) {
82- if (maxmindId .length () != 8 ) {
82+ if (maxmindId .length () != 8 ) {
8383 throw new IllegalArgumentException ("maxmindId must be exactly 8 characters in length" );
8484 }
8585 this .maxmindId = maxmindId ;
@@ -88,10 +88,10 @@ public TransactionReport.Builder maxmindId(String maxmindId) {
8888
8989 /**
9090 * @param minfraudId A UUID that identifies a minFraud Score, minFraud Insights,
91- * or minFraud Factors request. This ID is returned via getId() in the
92- * Score, Insights or Factors response object. This field is not
93- * required, but you are encouraged to provide it if the request was
94- * made to one of these services.
91+ * or minFraud Factors request. This ID is returned via getId() in the
92+ * Score, Insights or Factors response object. This field is not
93+ * required, but you are encouraged to provide it if the request was
94+ * made to one of these services.
9595 * @return The builder object.
9696 */
9797 public TransactionReport .Builder minfraudId (UUID minfraudId ) {
0 commit comments