51 lines
1.4 KiB
Java
51 lines
1.4 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class AHv {
|
|
|
|
@SerializedName("isHidden")
|
|
public final Boolean a;
|
|
|
|
@SerializedName("isPrefilled")
|
|
public final Boolean b;
|
|
|
|
@SerializedName("field")
|
|
public final String d;
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
Boolean bool = this.a;
|
|
Boolean bool2 = this.b;
|
|
StringBuilder sb = new StringBuilder("ScreenRuleEntity(field=");
|
|
sb.append(str);
|
|
sb.append(", isHidden=");
|
|
sb.append(bool);
|
|
sb.append(", isPrefilled=");
|
|
sb.append(bool2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.d;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
Boolean bool = this.a;
|
|
int hashCode2 = bool == null ? 0 : bool.hashCode();
|
|
Boolean bool2 = this.b;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (bool2 != null ? bool2.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof AHv)) {
|
|
return false;
|
|
}
|
|
AHv aHv = (AHv) obj;
|
|
return C14957gcv.b((Object) this.d, (Object) aHv.d) && C14957gcv.b(this.a, aHv.a) && C14957gcv.b(this.b, aHv.b);
|
|
}
|
|
}
|