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

39 lines
821 B
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public class tUg {
@SerializedName("maxIssuer")
public int a;
@SerializedName("issuer")
public List<HBw> e;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof tUg)) {
return false;
}
tUg tug = (tUg) obj;
if (this.a != tug.a) {
return false;
}
List<HBw> list = this.e;
if (list != null) {
return list.equals(tug.e);
}
return tug.e == null;
}
public int hashCode() {
int i = this.a;
List<HBw> list = this.e;
return (i * 31) + (list != null ? list.hashCode() : 0);
}
}