52 lines
1.4 KiB
Java
52 lines
1.4 KiB
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class KH {
|
|
public final String a;
|
|
public final int b;
|
|
public final String c;
|
|
public final String d;
|
|
|
|
public KH(String str, int i, String str2, String str3) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
this.d = str;
|
|
this.b = i;
|
|
this.c = str2;
|
|
this.a = str3;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
int i = this.b;
|
|
String str2 = this.c;
|
|
String str3 = this.a;
|
|
StringBuilder sb = new StringBuilder("CoBorrowerDisplay(coBorrowerId=");
|
|
sb.append(str);
|
|
sb.append(", sortSequence=");
|
|
sb.append(i);
|
|
sb.append(", coBorrowerName=");
|
|
sb.append(str2);
|
|
sb.append(", mobileNumber=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((((this.d.hashCode() * 31) + Integer.hashCode(this.b)) * 31) + this.c.hashCode()) * 31) + this.a.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof KH)) {
|
|
return false;
|
|
}
|
|
KH kh = (KH) obj;
|
|
return C14957gcv.b((Object) this.d, (Object) kh.d) && this.b == kh.b && C14957gcv.b((Object) this.c, (Object) kh.c) && C14957gcv.b((Object) this.a, (Object) kh.a);
|
|
}
|
|
}
|