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

66 lines
1.9 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public class Vwc {
@SerializedName("disclaimerHeader")
public String a;
@SerializedName("disclaimerDescription")
public String b;
@SerializedName("referenceAccounts")
public List<Ubp> c;
@SerializedName("repaymentAccounts")
public List<Ubp> d;
@SerializedName("receivingAccounts")
public List<Ubp> e;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
Vwc vwc = (Vwc) obj;
List<Ubp> list = this.e;
if (list == null ? vwc.e != null : !list.equals(vwc.e)) {
return false;
}
List<Ubp> list2 = this.d;
if (list2 == null ? vwc.d != null : !list2.equals(vwc.d)) {
return false;
}
List<Ubp> list3 = this.c;
if (list3 == null ? vwc.c != null : !list3.equals(vwc.c)) {
return false;
}
String str = this.a;
if (str == null ? vwc.a != null : !str.equals(vwc.a)) {
return false;
}
String str2 = this.b;
String str3 = vwc.b;
return str2 != null ? str2.equals(str3) : str3 == null;
}
public int hashCode() {
List<Ubp> list = this.e;
int hashCode = list != null ? list.hashCode() : 0;
List<Ubp> list2 = this.d;
int hashCode2 = list2 != null ? list2.hashCode() : 0;
List<Ubp> list3 = this.c;
int hashCode3 = list3 != null ? list3.hashCode() : 0;
String str = this.a;
int hashCode4 = str != null ? str.hashCode() : 0;
String str2 = this.b;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (str2 != null ? str2.hashCode() : 0);
}
}