package o; import com.google.gson.annotations.SerializedName; /* loaded from: classes3.dex */ public final class Iof { @SerializedName("mobileNumber") public final String d; @SerializedName("name") public final String e; public final String toString() { String str = this.e; String str2 = this.d; StringBuilder sb = new StringBuilder("CoBorrower(name="); sb.append(str); sb.append(", mobileNumber="); sb.append(str2); sb.append(")"); return sb.toString(); } public final int hashCode() { return (this.e.hashCode() * 31) + this.d.hashCode(); } public final boolean equals(Object obj) { if (this == obj) { return true; } if (!(obj instanceof Iof)) { return false; } Iof iof = (Iof) obj; return C14957gcv.b((Object) this.e, (Object) iof.e) && C14957gcv.b((Object) this.d, (Object) iof.d); } }