46 lines
1.0 KiB
Java
46 lines
1.0 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class LvK {
|
|
|
|
@SerializedName("functionId")
|
|
String a;
|
|
|
|
@SerializedName("imageUrl")
|
|
public String d;
|
|
|
|
public LvK(String str, String str2) {
|
|
this.d = str;
|
|
this.a = str2;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
LvK lvK = (LvK) obj;
|
|
String str = this.d;
|
|
if (str == null ? lvK.d != null : !str.equals(lvK.d)) {
|
|
return false;
|
|
}
|
|
String str2 = this.a;
|
|
String str3 = lvK.a;
|
|
return str2 != null ? str2.equals(str3) : str3 == null;
|
|
}
|
|
|
|
public int hashCode() {
|
|
String str = this.d;
|
|
int hashCode = str != null ? str.hashCode() : 0;
|
|
String str2 = this.a;
|
|
return (hashCode * 31) + (str2 != null ? str2.hashCode() : 0);
|
|
}
|
|
|
|
public /* synthetic */ LvK() {
|
|
}
|
|
}
|