package o; import com.google.gson.annotations.SerializedName; /* loaded from: classes3.dex */ public final class lIP { @SerializedName("applicationId") public final String a; @SerializedName("isFaceVerify") public final boolean e; public final String toString() { String str = this.a; boolean z = this.e; StringBuilder sb = new StringBuilder("ETBOpenAccountEligibilityEntity(applicationId="); sb.append(str); sb.append(", isFaceVerify="); sb.append(z); sb.append(")"); return sb.toString(); } /* JADX WARN: Multi-variable type inference failed */ public final int hashCode() { String str = this.a; int hashCode = str == null ? 0 : str.hashCode(); boolean z = this.e; int i = z; if (z != 0) { i = 1; } return (hashCode * 31) + i; } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof lIP)) { return false; } lIP lip = (lIP) obj; return C14957gcv.b((Object) this.a, (Object) lip.a) && this.e == lip.e; } }