what-the-bank/sources/o/C0894Qxm.java

57 lines
1.8 KiB
Java

package o;
/* renamed from: o.Qxm, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C0894Qxm {
public final String a;
public final Double c;
public final String d;
public final String e;
public C0894Qxm(String str, String str2, String str3, Double d) {
this.a = str;
this.e = str2;
this.d = str3;
this.c = d;
}
public final String toString() {
String str = this.a;
String str2 = this.e;
String str3 = this.d;
Double d = this.c;
StringBuilder sb = new StringBuilder("CreditCardFullAmount(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.a;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.e;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.d;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
Double d = this.c;
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 C0894Qxm)) {
return false;
}
C0894Qxm c0894Qxm = (C0894Qxm) obj;
return C14957gcv.b((Object) this.a, (Object) c0894Qxm.a) && C14957gcv.b((Object) this.e, (Object) c0894Qxm.e) && C14957gcv.b((Object) this.d, (Object) c0894Qxm.d) && C14957gcv.b(this.c, c0894Qxm.c);
}
}