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

44 lines
1.1 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
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<RQi> c;
@SerializedName("dividendList")
public final List<NnH> d;
public final String toString() {
List<RQi> list = this.c;
List<NnH> 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<RQi> list = this.c;
int hashCode = list == null ? 0 : list.hashCode();
List<NnH> 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);
}
}