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

41 lines
1.0 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class EiI {
@SerializedName("mobileNo")
public final String c;
@SerializedName("email")
public final String d;
public final String toString() {
String str = this.c;
String str2 = this.d;
StringBuilder sb = new StringBuilder("CustomerContactInfo(mobileNo=");
sb.append(str);
sb.append(", email=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.c;
return ((str == null ? 0 : str.hashCode()) * 31) + this.d.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof EiI)) {
return false;
}
EiI eiI = (EiI) obj;
return C14957gcv.b((Object) this.c, (Object) eiI.c) && C14957gcv.b((Object) this.d, (Object) eiI.d);
}
}