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

49 lines
1.3 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public final class Lsx {
public final RUM a;
public final EVU c;
public final String e;
public Lsx(EVU evu, RUM rum, String str) {
C14957gcv.e(evu, "");
C14957gcv.e(rum, "");
this.c = evu;
this.a = rum;
this.e = str;
}
public final String toString() {
EVU evu = this.c;
RUM rum = this.a;
String str = this.e;
StringBuilder sb = new StringBuilder("HmlBusinessOwnerStatus(productType=");
sb.append(evu);
sb.append(", applicationStatus=");
sb.append(rum);
sb.append(", applicationUuid=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.c.hashCode();
int hashCode2 = this.a.hashCode();
String str = this.e;
return (((hashCode * 31) + hashCode2) * 31) + (str == null ? 0 : str.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Lsx)) {
return false;
}
Lsx lsx = (Lsx) obj;
return this.c == lsx.c && this.a == lsx.a && C14957gcv.b((Object) this.e, (Object) lsx.e);
}
}