35 lines
706 B
Java
35 lines
706 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class VsT {
|
|
|
|
@SerializedName("issuer")
|
|
public List<HBw> c;
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof VsT)) {
|
|
return false;
|
|
}
|
|
VsT vsT = (VsT) obj;
|
|
List<HBw> list = this.c;
|
|
if (list != null) {
|
|
return list.equals(vsT.c);
|
|
}
|
|
return vsT.c == null;
|
|
}
|
|
|
|
public int hashCode() {
|
|
List<HBw> list = this.c;
|
|
if (list != null) {
|
|
return list.hashCode();
|
|
}
|
|
return 0;
|
|
}
|
|
}
|