34 lines
732 B
Java
34 lines
732 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class SFx {
|
|
|
|
@SerializedName("tcAcceptVersion")
|
|
private final int d;
|
|
|
|
public SFx(int i) {
|
|
this.d = i;
|
|
}
|
|
|
|
public final String toString() {
|
|
int i = this.d;
|
|
StringBuilder sb = new StringBuilder("BankingAgentTcRequest(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 SFx) && this.d == ((SFx) obj).d;
|
|
}
|
|
}
|