package o; import com.google.gson.annotations.SerializedName; import java.util.List; /* loaded from: classes3.dex */ public final class RBf { @SerializedName("fundSummaryList") public final List c; @SerializedName("dividendList") public final List d; public final String toString() { List list = this.c; List list2 = this.d; StringBuilder sb = new StringBuilder("FundDetailsDataEntity(fundSummaryList="); sb.append(list); sb.append(", dividendList="); sb.append(list2); sb.append(")"); return sb.toString(); } public final int hashCode() { List list = this.c; int hashCode = list == null ? 0 : list.hashCode(); List list2 = this.d; return (hashCode * 31) + (list2 != null ? list2.hashCode() : 0); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof RBf)) { return false; } RBf rBf = (RBf) obj; return C14957gcv.b(this.c, rBf.c) && C14957gcv.b(this.d, rBf.d); } }