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

103 lines
3.5 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import java.util.List;
/* loaded from: classes3.dex */
public final class WNX {
public final double a;
public final C17307vgH b;
public final C17307vgH c;
public final C15387gp<String> d;
public final List<HYO> e;
private final double f;
public final double g;
public final double h;
public final String i;
public final double j;
private /* synthetic */ WNX(byte b) {
this(0.0d, 0.0d, 0.0d, 0.0d, 0.0d, null, null, null, null, null);
}
public WNX(double d, double d2, double d3, double d4, double d5, C17307vgH c17307vgH, C17307vgH c17307vgH2, List<HYO> list, C15387gp<String> c15387gp, String str) {
this.a = d;
this.f = d2;
this.j = d3;
this.g = d4;
this.h = d5;
this.c = c17307vgH;
this.b = c17307vgH2;
this.e = list;
this.d = c15387gp;
this.i = str;
}
public final String toString() {
double d = this.a;
double d2 = this.f;
double d3 = this.j;
double d4 = this.g;
double d5 = this.h;
C17307vgH c17307vgH = this.c;
C17307vgH c17307vgH2 = this.b;
List<HYO> list = this.e;
C15387gp<String> c15387gp = this.d;
String str = this.i;
StringBuilder sb = new StringBuilder("FixedTransferVerification(netAmount=");
sb.append(d);
sb.append(", totalAmount=");
sb.append(d2);
sb.append(", totalInterest=");
sb.append(d3);
sb.append(", totalTax=");
sb.append(d4);
sb.append(", totalFee=");
sb.append(d5);
sb.append(", accountFrom=");
sb.append(c17307vgH);
sb.append(", accountTo=");
sb.append(c17307vgH2);
sb.append(", subdeposit=");
sb.append(list);
sb.append(", annotation=");
sb.append(c15387gp);
sb.append(", transactionToken=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = Double.hashCode(this.a);
int hashCode2 = Double.hashCode(this.f);
int hashCode3 = Double.hashCode(this.j);
int hashCode4 = Double.hashCode(this.g);
int hashCode5 = Double.hashCode(this.h);
C17307vgH c17307vgH = this.c;
int hashCode6 = c17307vgH == null ? 0 : c17307vgH.hashCode();
C17307vgH c17307vgH2 = this.b;
int hashCode7 = c17307vgH2 == null ? 0 : c17307vgH2.hashCode();
List<HYO> list = this.e;
int hashCode8 = list == null ? 0 : list.hashCode();
C15387gp<String> c15387gp = this.d;
int hashCode9 = c15387gp == null ? 0 : c15387gp.hashCode();
String str = this.i;
return (((((((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + hashCode9) * 31) + (str != null ? str.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof WNX)) {
return false;
}
WNX wnx = (WNX) obj;
return Double.compare(this.a, wnx.a) == 0 && Double.compare(this.f, wnx.f) == 0 && Double.compare(this.j, wnx.j) == 0 && Double.compare(this.g, wnx.g) == 0 && Double.compare(this.h, wnx.h) == 0 && C14957gcv.b(this.c, wnx.c) && C14957gcv.b(this.b, wnx.b) && C14957gcv.b(this.e, wnx.e) && C14957gcv.b(this.d, wnx.d) && C14957gcv.b((Object) this.i, (Object) wnx.i);
}
public WNX() {
this((byte) 0);
}
}