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

58 lines
1.6 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class xMn {
@SerializedName("categoryList")
public final List<BmF> a;
@SerializedName("notificationChannel")
public final String c;
@SerializedName("channelEnabledFlag")
public final String d;
public xMn(String str, String str2, List<BmF> list) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.c = str;
this.d = str2;
this.a = list;
}
public final String toString() {
String str = this.c;
String str2 = this.d;
List<BmF> list = this.a;
StringBuilder sb = new StringBuilder("NotificationChannelEntity(notificationChannel=");
sb.append(str);
sb.append(", channelEnabledFlag=");
sb.append(str2);
sb.append(", categoryList=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.c.hashCode();
int hashCode2 = this.d.hashCode();
List<BmF> list = this.a;
return (((hashCode * 31) + hashCode2) * 31) + (list == null ? 0 : list.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof xMn)) {
return false;
}
xMn xmn = (xMn) obj;
return C14957gcv.b((Object) this.c, (Object) xmn.c) && C14957gcv.b((Object) this.d, (Object) xmn.d) && C14957gcv.b(this.a, xmn.a);
}
}