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

68 lines
2.0 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;
/* renamed from: o.ab, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C2250ab {
@SerializedName("filterFundType")
private final List<String> b;
@SerializedName("isDisplayYield")
private Boolean c;
@SerializedName("schedule")
private final JiO d;
@SerializedName("switchOutFundCode")
private final String e;
public C2250ab(String str, JiO jiO, List<String> list, Boolean bool) {
C14957gcv.e(str, "");
this.e = str;
this.d = jiO;
this.b = list;
this.c = bool;
}
public final String toString() {
String str = this.e;
JiO jiO = this.d;
List<String> list = this.b;
Boolean bool = this.c;
StringBuilder sb = new StringBuilder("MutualFundSwitchInSearchRequest(switchOutFundCode=");
sb.append(str);
sb.append(", schedule=");
sb.append(jiO);
sb.append(", filterFundType=");
sb.append(list);
sb.append(", isDisplayYield=");
sb.append(bool);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.e.hashCode();
JiO jiO = this.d;
int hashCode2 = jiO == null ? 0 : jiO.hashCode();
List<String> list = this.b;
int hashCode3 = list == null ? 0 : list.hashCode();
Boolean bool = this.c;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (bool != null ? bool.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C2250ab)) {
return false;
}
C2250ab c2250ab = (C2250ab) obj;
return C14957gcv.b((Object) this.e, (Object) c2250ab.e) && C14957gcv.b(this.d, c2250ab.d) && C14957gcv.b(this.b, c2250ab.b) && C14957gcv.b(this.c, c2250ab.c);
}
}