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

69 lines
1.6 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import java.util.List;
/* loaded from: classes3.dex */
public final class XNX {
public final List<ZQZ> a;
public final boolean c;
public final String d;
public XNX(String str, boolean z, List<ZQZ> list) {
C14957gcv.e(str, "");
C14957gcv.e(list, "");
this.d = str;
this.c = z;
this.a = list;
}
/* loaded from: classes3.dex */
public static final class HBt {
private HBt() {
}
public /* synthetic */ HBt(byte b) {
this();
}
}
public final String toString() {
String str = this.d;
boolean z = this.c;
List<ZQZ> list = this.a;
StringBuilder sb = new StringBuilder("NotificationChannel(notificationChannel=");
sb.append(str);
sb.append(", channelEnabledFlag=");
sb.append(z);
sb.append(", categoryList=");
sb.append(list);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
int hashCode = this.d.hashCode();
boolean z = this.c;
int i = z;
if (z != 0) {
i = 1;
}
return (((hashCode * 31) + i) * 31) + this.a.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof XNX)) {
return false;
}
XNX xnx = (XNX) obj;
return C14957gcv.b((Object) this.d, (Object) xnx.d) && this.c == xnx.c && C14957gcv.b(this.a, xnx.a);
}
static {
new HBt((byte) 0);
}
}