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

48 lines
977 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public class GCo {
@SerializedName("documentCode")
public List<C17491xGR> d;
/* loaded from: classes3.dex */
public static final class HBt {
public List<C17491xGR> c;
}
private GCo(HBt hBt) {
this.d = hBt.c;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof GCo)) {
return false;
}
GCo gCo = (GCo) obj;
List<C17491xGR> list = this.d;
if (list != null) {
return list.equals(gCo.d);
}
return gCo.d == null;
}
public int hashCode() {
List<C17491xGR> list = this.d;
if (list != null) {
return list.hashCode();
}
return 0;
}
public /* synthetic */ GCo(HBt hBt, byte b) {
this(hBt);
}
}