67 lines
2.0 KiB
Java
67 lines
2.0 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class BJJ {
|
|
|
|
@SerializedName("omnibusTransaction")
|
|
public final Boolean a;
|
|
|
|
@SerializedName("omnibusOnboarding")
|
|
public final Boolean b;
|
|
|
|
@SerializedName("enablePurchaseSearchAll")
|
|
public final Boolean c;
|
|
|
|
@SerializedName("productRecommend")
|
|
public final Boolean d;
|
|
|
|
@SerializedName("transHistory")
|
|
public final Boolean e;
|
|
|
|
public final String toString() {
|
|
Boolean bool = this.e;
|
|
Boolean bool2 = this.b;
|
|
Boolean bool3 = this.a;
|
|
Boolean bool4 = this.d;
|
|
Boolean bool5 = this.c;
|
|
StringBuilder sb = new StringBuilder("MutualFundToggleEntity(transHistory=");
|
|
sb.append(bool);
|
|
sb.append(", omnibusOnboarding=");
|
|
sb.append(bool2);
|
|
sb.append(", omnibusTransaction=");
|
|
sb.append(bool3);
|
|
sb.append(", productRecommend=");
|
|
sb.append(bool4);
|
|
sb.append(", enablePurchaseSearchAll=");
|
|
sb.append(bool5);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
Boolean bool = this.e;
|
|
int hashCode = bool == null ? 0 : bool.hashCode();
|
|
Boolean bool2 = this.b;
|
|
int hashCode2 = bool2 == null ? 0 : bool2.hashCode();
|
|
Boolean bool3 = this.a;
|
|
int hashCode3 = bool3 == null ? 0 : bool3.hashCode();
|
|
Boolean bool4 = this.d;
|
|
int hashCode4 = bool4 == null ? 0 : bool4.hashCode();
|
|
Boolean bool5 = this.c;
|
|
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (bool5 != null ? bool5.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof BJJ)) {
|
|
return false;
|
|
}
|
|
BJJ bjj = (BJJ) obj;
|
|
return C14957gcv.b(this.e, bjj.e) && C14957gcv.b(this.b, bjj.b) && C14957gcv.b(this.a, bjj.a) && C14957gcv.b(this.d, bjj.d) && C14957gcv.b(this.c, bjj.c);
|
|
}
|
|
}
|