package o; import com.google.gson.annotations.SerializedName; import java.util.List; /* loaded from: classes3.dex */ public class GCo { @SerializedName("documentCode") public List d; /* loaded from: classes3.dex */ public static final class HBt { public List 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 list = this.d; if (list != null) { return list.equals(gCo.d); } return gCo.d == null; } public int hashCode() { List list = this.d; if (list != null) { return list.hashCode(); } return 0; } public /* synthetic */ GCo(HBt hBt, byte b) { this(hBt); } }