44 lines
1.1 KiB
Java
44 lines
1.1 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class WKU {
|
|
|
|
@SerializedName("header")
|
|
public final String a;
|
|
|
|
@SerializedName("items")
|
|
public final List<C16603pew> e;
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
List<C16603pew> list = this.e;
|
|
StringBuilder sb = new StringBuilder("LongDescListEntity(header=");
|
|
sb.append(str);
|
|
sb.append(", items=");
|
|
sb.append(list);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.a;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
List<C16603pew> list = this.e;
|
|
return (hashCode * 31) + (list != null ? list.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof WKU)) {
|
|
return false;
|
|
}
|
|
WKU wku = (WKU) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) wku.a) && C14957gcv.b(this.e, wku.e);
|
|
}
|
|
}
|