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

31 lines
764 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* renamed from: o.es, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C12112es {
@SerializedName("tcAcceptVersion")
private final int d;
public final String toString() {
int i = this.d;
StringBuilder sb = new StringBuilder("RegistrationTcAcceptRequest(tcAcceptVersion=");
sb.append(i);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return Integer.hashCode(this.d);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
return (obj instanceof C12112es) && this.d == ((C12112es) obj).d;
}
}