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

42 lines
1.1 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class IQa {
@SerializedName("fatcaCRSTrackingId")
public final String b;
@SerializedName("fatcaFlag")
public final String e;
public final String toString() {
String str = this.e;
String str2 = this.b;
StringBuilder sb = new StringBuilder("IdentityValidationEntity(fatcaFlag=");
sb.append(str);
sb.append(", fatcaCRSTrackingId=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.e.hashCode();
String str = this.b;
return (hashCode * 31) + (str == null ? 0 : str.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof IQa)) {
return false;
}
IQa iQa = (IQa) obj;
return C14957gcv.b((Object) this.e, (Object) iQa.e) && C14957gcv.b((Object) this.b, (Object) iQa.b);
}
}