42 lines
1.1 KiB
Java
42 lines
1.1 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class BDp {
|
||
|
|
||
|
@SerializedName("toggleIsprintPayshield")
|
||
|
public final int a;
|
||
|
|
||
|
@SerializedName("juristicTileVersion")
|
||
|
public final String c;
|
||
|
|
||
|
public final String toString() {
|
||
|
int i = this.a;
|
||
|
String str = this.c;
|
||
|
StringBuilder sb = new StringBuilder("AppConfigISprintEntity(toggleISprintPayShield=");
|
||
|
sb.append(i);
|
||
|
sb.append(", juristicTileVersion=");
|
||
|
sb.append(str);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
int hashCode = Integer.hashCode(this.a);
|
||
|
String str = this.c;
|
||
|
return (hashCode * 31) + (str == null ? 0 : str.hashCode());
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof BDp)) {
|
||
|
return false;
|
||
|
}
|
||
|
BDp bDp = (BDp) obj;
|
||
|
return this.a == bDp.a && C14957gcv.b((Object) this.c, (Object) bDp.c);
|
||
|
}
|
||
|
}
|