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

49 lines
1.3 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class NJ {
public final Boolean b;
public final Boolean c;
public final Boolean d;
public NJ(Boolean bool, Boolean bool2, Boolean bool3) {
this.d = bool;
this.b = bool2;
this.c = bool3;
}
public final String toString() {
Boolean bool = this.d;
Boolean bool2 = this.b;
Boolean bool3 = this.c;
StringBuilder sb = new StringBuilder("HmlSubmissionConsents(tnc=");
sb.append(bool);
sb.append(", model=");
sb.append(bool2);
sb.append(", crossSell=");
sb.append(bool3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
Boolean bool = this.d;
int hashCode = bool == null ? 0 : bool.hashCode();
Boolean bool2 = this.b;
int hashCode2 = bool2 == null ? 0 : bool2.hashCode();
Boolean bool3 = this.c;
return (((hashCode * 31) + hashCode2) * 31) + (bool3 != null ? bool3.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof NJ)) {
return false;
}
NJ nj = (NJ) obj;
return C14957gcv.b(this.d, nj.d) && C14957gcv.b(this.b, nj.b) && C14957gcv.b(this.c, nj.c);
}
}