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

134 lines
4.2 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import io.beid.beidk.definitions.BeIDParams;
import java.util.List;
/* loaded from: classes3.dex */
public final class Bde extends C16562pOe {
@SerializedName("remainingBalance")
public final double a;
@SerializedName("accountFrom")
public final C16333nYy b;
@SerializedName("netAmount")
public final double c;
@SerializedName("accountTo")
public final C16333nYy d;
@SerializedName("subdeposits")
public final List<SRK> e;
@SerializedName("totalAmount")
public final double f;
@SerializedName("totalInterest")
public final double g;
@SerializedName("totalTax")
public final double h;
@SerializedName("transactionDateTime")
public final String i;
@SerializedName("totalFee")
public final double j;
/* renamed from: o, reason: collision with root package name */
@SerializedName(BeIDParams.BEID_TRANSACTION_ID)
public final String f8107o;
private /* synthetic */ Bde(char c) {
this((byte) 0);
}
private Bde(byte b) {
this.f8107o = null;
this.i = null;
this.a = 0.0d;
this.c = 0.0d;
this.f = 0.0d;
this.g = 0.0d;
this.h = 0.0d;
this.j = 0.0d;
this.b = null;
this.d = null;
this.e = null;
}
public final String toString() {
String str = this.f8107o;
String str2 = this.i;
double d = this.a;
double d2 = this.c;
double d3 = this.f;
double d4 = this.g;
double d5 = this.h;
double d6 = this.j;
C16333nYy c16333nYy = this.b;
C16333nYy c16333nYy2 = this.d;
List<SRK> list = this.e;
StringBuilder sb = new StringBuilder("FixedTransferConfirmationEntity(transactionId=");
sb.append(str);
sb.append(", transactionDateTime=");
sb.append(str2);
sb.append(", remainingBalance=");
sb.append(d);
sb.append(", netAmount=");
sb.append(d2);
sb.append(", totalAmount=");
sb.append(d3);
sb.append(", totalInterest=");
sb.append(d4);
sb.append(", totalTax=");
sb.append(d5);
sb.append(", totalFee=");
sb.append(d6);
sb.append(", accountFrom=");
sb.append(c16333nYy);
sb.append(", accountTo=");
sb.append(c16333nYy2);
sb.append(", subdeposits=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.f8107o;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.i;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
int hashCode3 = Double.hashCode(this.a);
int hashCode4 = Double.hashCode(this.c);
int hashCode5 = Double.hashCode(this.f);
int hashCode6 = Double.hashCode(this.g);
int hashCode7 = Double.hashCode(this.h);
int hashCode8 = Double.hashCode(this.j);
C16333nYy c16333nYy = this.b;
int hashCode9 = c16333nYy == null ? 0 : c16333nYy.hashCode();
C16333nYy c16333nYy2 = this.d;
int hashCode10 = c16333nYy2 == null ? 0 : c16333nYy2.hashCode();
List<SRK> list = this.e;
return (((((((((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + hashCode9) * 31) + hashCode10) * 31) + (list != null ? list.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Bde)) {
return false;
}
Bde bde = (Bde) obj;
return C14957gcv.b((Object) this.f8107o, (Object) bde.f8107o) && C14957gcv.b((Object) this.i, (Object) bde.i) && Double.compare(this.a, bde.a) == 0 && Double.compare(this.c, bde.c) == 0 && Double.compare(this.f, bde.f) == 0 && Double.compare(this.g, bde.g) == 0 && Double.compare(this.h, bde.h) == 0 && Double.compare(this.j, bde.j) == 0 && C14957gcv.b(this.b, bde.b) && C14957gcv.b(this.d, bde.d) && C14957gcv.b(this.e, bde.e);
}
public Bde() {
this((char) 0);
}
}