52 lines
1.4 KiB
Java
52 lines
1.4 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class KHE {
|
|
|
|
@SerializedName("deeplinkURL")
|
|
public final String a;
|
|
|
|
@SerializedName("tiles")
|
|
public final List<C0514Ijg> c;
|
|
|
|
@SerializedName("functionId")
|
|
public final String d;
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.d;
|
|
List<C0514Ijg> list = this.c;
|
|
StringBuilder sb = new StringBuilder("SubProductListEntity(deeplinkURL=");
|
|
sb.append(str);
|
|
sb.append(", functionId=");
|
|
sb.append(str2);
|
|
sb.append(", subTiles=");
|
|
sb.append(list);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.a;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
String str2 = this.d;
|
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
|
List<C0514Ijg> list = this.c;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (list != null ? list.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof KHE)) {
|
|
return false;
|
|
}
|
|
KHE khe = (KHE) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) khe.a) && C14957gcv.b((Object) this.d, (Object) khe.d) && C14957gcv.b(this.c, khe.c);
|
|
}
|
|
}
|