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

147 lines
4.6 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.math.BigDecimal;
import java.util.List;
/* loaded from: classes3.dex */
public class Fbr {
@SerializedName("currency")
public String a;
@SerializedName("debitAccount")
public String b;
@SerializedName("beneficiaryName")
public String c;
@SerializedName("claimedList")
public List<vGq> d;
@SerializedName("claimedFlag")
public String e;
@SerializedName("documentNo")
public String f;
@SerializedName("feeRate")
public BigDecimal g;
@SerializedName("endDate")
public String h;
@SerializedName("lgAmount")
public BigDecimal i;
@SerializedName("issueType")
public String j;
@SerializedName("tierKey")
public String k;
@SerializedName("sortSequence")
public int l;
@SerializedName("nextFeePaymentAmount")
public BigDecimal n;
/* renamed from: o, reason: collision with root package name */
@SerializedName("startDate")
public String f8170o;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
Fbr fbr = (Fbr) obj;
if (this.l != fbr.l) {
return false;
}
String str = this.k;
if (str == null ? fbr.k != null : !str.equals(fbr.k)) {
return false;
}
String str2 = this.c;
if (str2 == null ? fbr.c != null : !str2.equals(fbr.c)) {
return false;
}
BigDecimal bigDecimal = this.i;
if (bigDecimal == null ? fbr.i != null : !bigDecimal.equals(fbr.i)) {
return false;
}
String str3 = this.h;
if (str3 == null ? fbr.h != null : !str3.equals(fbr.h)) {
return false;
}
String str4 = this.j;
if (str4 == null ? fbr.j != null : !str4.equals(fbr.j)) {
return false;
}
String str5 = this.b;
if (str5 == null ? fbr.b != null : !str5.equals(fbr.b)) {
return false;
}
String str6 = this.f;
if (str6 == null ? fbr.f != null : !str6.equals(fbr.f)) {
return false;
}
String str7 = this.f8170o;
if (str7 == null ? fbr.f8170o != null : !str7.equals(fbr.f8170o)) {
return false;
}
BigDecimal bigDecimal2 = this.n;
if (bigDecimal2 == null ? fbr.n != null : !bigDecimal2.equals(fbr.n)) {
return false;
}
BigDecimal bigDecimal3 = this.g;
if (bigDecimal3 == null ? fbr.g != null : !bigDecimal3.equals(fbr.g)) {
return false;
}
String str8 = this.a;
if (str8 == null ? fbr.a != null : !str8.equals(fbr.a)) {
return false;
}
String str9 = this.e;
if (str9 == null ? fbr.e != null : !str9.equals(fbr.e)) {
return false;
}
List<vGq> list = this.d;
List<vGq> list2 = fbr.d;
return list != null ? list.equals(list2) : list2 == null;
}
public int hashCode() {
int i = this.l;
String str = this.k;
int hashCode = str != null ? str.hashCode() : 0;
String str2 = this.c;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
BigDecimal bigDecimal = this.i;
int hashCode3 = bigDecimal != null ? bigDecimal.hashCode() : 0;
String str3 = this.h;
int hashCode4 = str3 != null ? str3.hashCode() : 0;
String str4 = this.j;
int hashCode5 = str4 != null ? str4.hashCode() : 0;
String str5 = this.b;
int hashCode6 = str5 != null ? str5.hashCode() : 0;
String str6 = this.f;
int hashCode7 = str6 != null ? str6.hashCode() : 0;
String str7 = this.f8170o;
int hashCode8 = str7 != null ? str7.hashCode() : 0;
BigDecimal bigDecimal2 = this.n;
int hashCode9 = bigDecimal2 != null ? bigDecimal2.hashCode() : 0;
BigDecimal bigDecimal3 = this.g;
int hashCode10 = bigDecimal3 != null ? bigDecimal3.hashCode() : 0;
String str8 = this.a;
int hashCode11 = str8 != null ? str8.hashCode() : 0;
String str9 = this.e;
int hashCode12 = str9 != null ? str9.hashCode() : 0;
List<vGq> list = this.d;
return (((((((((((((((((((((((((i * 31) + hashCode) * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + hashCode9) * 31) + hashCode10) * 31) + hashCode11) * 31) + hashCode12) * 31) + (list != null ? list.hashCode() : 0);
}
}