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

94 lines
2.8 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
import org.bouncycastle.i18n.MessageBundle;
/* loaded from: classes3.dex */
public class Sjo extends NLQ {
@SerializedName(MessageBundle.TITLE_ENTRY)
public String B;
@SerializedName("accountNo")
public String d;
@SerializedName("borrower")
public List<C11206eav> e;
@SerializedName("lastname")
public String u;
@SerializedName("fullLocation")
public String v;
@SerializedName("location")
public String w;
@SerializedName("duration")
public String x;
@SerializedName("firstname")
public String y;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
Sjo sjo = (Sjo) obj;
String str = this.w;
if (str == null ? sjo.w != null : !str.equals(sjo.w)) {
return false;
}
String str2 = this.v;
if (str2 == null ? sjo.v != null : !str2.equals(sjo.v)) {
return false;
}
String str3 = this.d;
if (str3 == null ? sjo.d != null : !str3.equals(sjo.d)) {
return false;
}
String str4 = this.x;
if (str4 == null ? sjo.x != null : !str4.equals(sjo.x)) {
return false;
}
String str5 = this.B;
if (str5 == null ? sjo.B != null : !str5.equals(sjo.B)) {
return false;
}
String str6 = this.y;
if (str6 == null ? sjo.y != null : !str6.equals(sjo.y)) {
return false;
}
String str7 = this.u;
if (str7 == null ? sjo.u != null : !str7.equals(sjo.u)) {
return false;
}
List<C11206eav> list = this.e;
List<C11206eav> list2 = sjo.e;
return list != null ? list.equals(list2) : list2 == null;
}
public int hashCode() {
String str = this.w;
int hashCode = str != null ? str.hashCode() : 0;
String str2 = this.v;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
String str3 = this.d;
int hashCode3 = str3 != null ? str3.hashCode() : 0;
String str4 = this.x;
int hashCode4 = str4 != null ? str4.hashCode() : 0;
String str5 = this.B;
int hashCode5 = str5 != null ? str5.hashCode() : 0;
String str6 = this.y;
int hashCode6 = str6 != null ? str6.hashCode() : 0;
String str7 = this.u;
int hashCode7 = str7 != null ? str7.hashCode() : 0;
List<C11206eav> list = this.e;
return (((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + (list != null ? list.hashCode() : 0);
}
}