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

45 lines
1.2 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* renamed from: o.neq, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C16350neq {
@SerializedName("currentAddress")
public final String b;
@SerializedName("contactNumber")
public final List<String> d;
public final String toString() {
List<String> list = this.d;
String str = this.b;
StringBuilder sb = new StringBuilder("IdpContactInfoEntity(contactNumber=");
sb.append(list);
sb.append(", currentAddress=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
List<String> list = this.d;
int hashCode = list == null ? 0 : list.hashCode();
String str = this.b;
return (hashCode * 31) + (str != null ? str.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C16350neq)) {
return false;
}
C16350neq c16350neq = (C16350neq) obj;
return C14957gcv.b(this.d, c16350neq.d) && C14957gcv.b((Object) this.b, (Object) c16350neq.b);
}
}