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

38 lines
929 B
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public class lSw {
@SerializedName("label")
public String c;
@SerializedName("deeplink")
public String e;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
lSw lsw = (lSw) obj;
String str = this.c;
if (str == null ? lsw.c != null : !str.equals(lsw.c)) {
return false;
}
String str2 = this.e;
String str3 = lsw.e;
return str2 != null ? str2.equals(str3) : str3 == null;
}
public int hashCode() {
String str = this.c;
int hashCode = str != null ? str.hashCode() : 0;
String str2 = this.e;
return (hashCode * 31) + (str2 != null ? str2.hashCode() : 0);
}
}