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

64 lines
2.0 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* renamed from: o.GiR, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C0427GiR {
public final String a;
public final String b;
public final String c;
public final Double d;
public final String e;
public C0427GiR(Double d, String str, String str2, String str3, String str4) {
this.d = d;
this.e = str;
this.b = str2;
this.c = str3;
this.a = str4;
}
public final String toString() {
Double d = this.d;
String str = this.e;
String str2 = this.b;
String str3 = this.c;
String str4 = this.a;
StringBuilder sb = new StringBuilder("BillPayment(paymentAmount=");
sb.append(d);
sb.append(", accountTo=");
sb.append(str);
sb.append(", ref1=");
sb.append(str2);
sb.append(", ref2=");
sb.append(str3);
sb.append(", ref3=");
sb.append(str4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
Double d = this.d;
int hashCode = d == null ? 0 : d.hashCode();
String str = this.e;
int hashCode2 = str == null ? 0 : str.hashCode();
String str2 = this.b;
int hashCode3 = str2 == null ? 0 : str2.hashCode();
String str3 = this.c;
int hashCode4 = str3 == null ? 0 : str3.hashCode();
String str4 = this.a;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (str4 != null ? str4.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C0427GiR)) {
return false;
}
C0427GiR c0427GiR = (C0427GiR) obj;
return C14957gcv.b(this.d, c0427GiR.d) && C14957gcv.b((Object) this.e, (Object) c0427GiR.e) && C14957gcv.b((Object) this.b, (Object) c0427GiR.b) && C14957gcv.b((Object) this.c, (Object) c0427GiR.c) && C14957gcv.b((Object) this.a, (Object) c0427GiR.a);
}
}