package o; import com.google.gson.annotations.SerializedName; /* loaded from: classes3.dex */ public final class YXA { @SerializedName("paymentAmount") public final Double b; @SerializedName("terminalId") public final String c; @SerializedName("orderReference") public final String d; @SerializedName("merchantId") public final String e; public final String toString() { String str = this.e; String str2 = this.c; String str3 = this.d; Double d = this.b; StringBuilder sb = new StringBuilder("CreditCardFullAmountEntity(merchantId="); sb.append(str); sb.append(", terminalId="); sb.append(str2); sb.append(", orderReference="); sb.append(str3); sb.append(", paymentAmount="); sb.append(d); sb.append(")"); return sb.toString(); } public final int hashCode() { String str = this.e; int hashCode = str == null ? 0 : str.hashCode(); String str2 = this.c; int hashCode2 = str2 == null ? 0 : str2.hashCode(); String str3 = this.d; int hashCode3 = str3 == null ? 0 : str3.hashCode(); Double d = this.b; return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (d != null ? d.hashCode() : 0); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof YXA)) { return false; } YXA yxa = (YXA) obj; return C14957gcv.b((Object) this.e, (Object) yxa.e) && C14957gcv.b((Object) this.c, (Object) yxa.c) && C14957gcv.b((Object) this.d, (Object) yxa.d) && C14957gcv.b(this.b, yxa.b); } }