38 lines
859 B
Java
38 lines
859 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import java.util.Objects;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class LCa extends JZY {
|
|
|
|
@SerializedName("isicCode")
|
|
String c;
|
|
|
|
public LCa(String str, String str2, String str3) {
|
|
super(str, str2, null);
|
|
this.c = str3;
|
|
}
|
|
|
|
@Override // o.JZY
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj != null && getClass() == obj.getClass() && super.equals(obj)) {
|
|
return Objects.equals(this.c, ((LCa) obj).c);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override // o.JZY
|
|
public int hashCode() {
|
|
int hashCode = super.hashCode();
|
|
String str = this.c;
|
|
return (hashCode * 31) + (str != null ? str.hashCode() : 0);
|
|
}
|
|
|
|
public /* synthetic */ LCa() {
|
|
}
|
|
}
|