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

57 lines
1.7 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.math.BigDecimal;
/* loaded from: classes3.dex */
public class vGq {
@SerializedName("interestRate")
public BigDecimal a;
@SerializedName("claimedAmount")
public BigDecimal b;
@SerializedName("claimedDate")
public String d;
@SerializedName("interestAmount")
public BigDecimal e;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
vGq vgq = (vGq) obj;
BigDecimal bigDecimal = this.b;
if (bigDecimal == null ? vgq.b != null : !bigDecimal.equals(vgq.b)) {
return false;
}
String str = this.d;
if (str == null ? vgq.d != null : !str.equals(vgq.d)) {
return false;
}
BigDecimal bigDecimal2 = this.e;
if (bigDecimal2 == null ? vgq.e != null : !bigDecimal2.equals(vgq.e)) {
return false;
}
BigDecimal bigDecimal3 = this.a;
BigDecimal bigDecimal4 = vgq.a;
return bigDecimal3 != null ? bigDecimal3.equals(bigDecimal4) : bigDecimal4 == null;
}
public int hashCode() {
BigDecimal bigDecimal = this.b;
int hashCode = bigDecimal != null ? bigDecimal.hashCode() : 0;
String str = this.d;
int hashCode2 = str != null ? str.hashCode() : 0;
BigDecimal bigDecimal2 = this.e;
int hashCode3 = bigDecimal2 != null ? bigDecimal2.hashCode() : 0;
BigDecimal bigDecimal3 = this.a;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (bigDecimal3 != null ? bigDecimal3.hashCode() : 0);
}
}