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

35 lines
798 B
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class MID {
@SerializedName("tilesVersion")
private final String b;
public MID(String str) {
C14957gcv.e(str, "");
this.b = str;
}
public final String toString() {
String str = this.b;
StringBuilder sb = new StringBuilder("EkycRegistrationsRequest(tilesVersion=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return this.b.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
return (obj instanceof MID) && C14957gcv.b((Object) this.b, (Object) ((MID) obj).b);
}
}