42 lines
1.0 KiB
Java
42 lines
1.0 KiB
Java
|
package o;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class Kax {
|
||
|
public Boolean a;
|
||
|
public Boolean d;
|
||
|
|
||
|
public Kax(Boolean bool, Boolean bool2) {
|
||
|
this.d = bool;
|
||
|
this.a = bool2;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
Boolean bool = this.d;
|
||
|
Boolean bool2 = this.a;
|
||
|
StringBuilder sb = new StringBuilder("ConsentToggle(dopaForOpenAcc=");
|
||
|
sb.append(bool);
|
||
|
sb.append(", enableCrossMatch=");
|
||
|
sb.append(bool2);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
Boolean bool = this.d;
|
||
|
int hashCode = bool == null ? 0 : bool.hashCode();
|
||
|
Boolean bool2 = this.a;
|
||
|
return (hashCode * 31) + (bool2 != null ? bool2.hashCode() : 0);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof Kax)) {
|
||
|
return false;
|
||
|
}
|
||
|
Kax kax = (Kax) obj;
|
||
|
return C14957gcv.b(this.d, kax.d) && C14957gcv.b(this.a, kax.a);
|
||
|
}
|
||
|
}
|