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

35 lines
708 B
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public class RbN {
@SerializedName("loanType")
public List<Pnu> c;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof RbN)) {
return false;
}
RbN rbN = (RbN) obj;
List<Pnu> list = this.c;
if (list != null) {
return list.equals(rbN.c);
}
return rbN.c == null;
}
public int hashCode() {
List<Pnu> list = this.c;
if (list != null) {
return list.hashCode();
}
return 0;
}
}