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 c; @SerializedName("repaymentAccounts") public List d; @SerializedName("receivingAccounts") public List e; public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } Vwc vwc = (Vwc) obj; List list = this.e; if (list == null ? vwc.e != null : !list.equals(vwc.e)) { return false; } List list2 = this.d; if (list2 == null ? vwc.d != null : !list2.equals(vwc.d)) { return false; } List 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 list = this.e; int hashCode = list != null ? list.hashCode() : 0; List list2 = this.d; int hashCode2 = list2 != null ? list2.hashCode() : 0; List 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); } }