package o; import com.google.gson.annotations.SerializedName; /* loaded from: classes3.dex */ public final class P { @SerializedName("tilesVersion") private final String a; @SerializedName("ipoStartDate") private final String b; @SerializedName("isIpo") private final boolean c; @SerializedName("ipoEndDate") private final String d; @SerializedName("fundCode") private final String e; public P(String str, boolean z, String str2, String str3, String str4) { C14957gcv.e(str, ""); C14957gcv.e(str2, ""); this.e = str; this.c = z; this.a = str2; this.b = str3; this.d = str4; } public final String toString() { String str = this.e; boolean z = this.c; String str2 = this.a; String str3 = this.b; String str4 = this.d; StringBuilder sb = new StringBuilder("InvestmentNowRequest(fundCode="); sb.append(str); sb.append(", isIpo="); sb.append(z); sb.append(", tilesVersion="); sb.append(str2); sb.append(", ipoStartDate="); sb.append(str3); sb.append(", ipoEndDate="); sb.append(str4); sb.append(")"); return sb.toString(); } /* JADX WARN: Multi-variable type inference failed */ public final int hashCode() { int hashCode = this.e.hashCode(); boolean z = this.c; int i = z; if (z != 0) { i = 1; } int hashCode2 = this.a.hashCode(); String str = this.b; int hashCode3 = str == null ? 0 : str.hashCode(); String str2 = this.d; return (((((((hashCode * 31) + i) * 31) + hashCode2) * 31) + hashCode3) * 31) + (str2 != null ? str2.hashCode() : 0); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof P)) { return false; } P p = (P) obj; return C14957gcv.b((Object) this.e, (Object) p.e) && this.c == p.c && C14957gcv.b((Object) this.a, (Object) p.a) && C14957gcv.b((Object) this.b, (Object) p.b) && C14957gcv.b((Object) this.d, (Object) p.d); } }