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

59 lines
1.5 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class MQ implements InterfaceC0727Nd {
public final String a;
public final String b;
public boolean c;
public MQ(String str, String str2, boolean z) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.b = str;
this.a = str2;
this.c = z;
}
@Override // o.InterfaceC0727Nd
public final int b() {
return MS.ITEM.viewType;
}
public final String toString() {
String str = this.b;
String str2 = this.a;
boolean z = this.c;
StringBuilder sb = new StringBuilder("CompanyItemDisplay(companyId=");
sb.append(str);
sb.append(", companyName=");
sb.append(str2);
sb.append(", isTrigger=");
sb.append(z);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
int hashCode = this.b.hashCode();
int hashCode2 = this.a.hashCode();
boolean z = this.c;
int i = z;
if (z != 0) {
i = 1;
}
return (((hashCode * 31) + hashCode2) * 31) + i;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof MQ)) {
return false;
}
MQ mq = (MQ) obj;
return C14957gcv.b((Object) this.b, (Object) mq.b) && C14957gcv.b((Object) this.a, (Object) mq.a) && this.c == mq.c;
}
}