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

48 lines
1.2 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* renamed from: o.fp, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C14218fp {
@SerializedName("citizenId")
private final String a;
@SerializedName("mobileNumber")
private final String c;
public C14218fp(String str, String str2) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.a = str;
this.c = str2;
}
public final String toString() {
String str = this.a;
String str2 = this.c;
StringBuilder sb = new StringBuilder("TouchPointFindUserRequest(citizenId=");
sb.append(str);
sb.append(", mobileNumber=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.a.hashCode() * 31) + this.c.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C14218fp)) {
return false;
}
C14218fp c14218fp = (C14218fp) obj;
return C14957gcv.b((Object) this.a, (Object) c14218fp.a) && C14957gcv.b((Object) this.c, (Object) c14218fp.c);
}
}