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

41 lines
1003 B
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class OUO {
@SerializedName("sumQuestions")
public final List<VoY> c;
@SerializedName("questions")
public final List<FPG> e;
public final String toString() {
List<FPG> list = this.e;
List<VoY> list2 = this.c;
StringBuilder sb = new StringBuilder("SuitabilitiesEntity(questions=");
sb.append(list);
sb.append(", sumQuestions=");
sb.append(list2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.e.hashCode() * 31) + this.c.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof OUO)) {
return false;
}
OUO ouo = (OUO) obj;
return C14957gcv.b(this.e, ouo.e) && C14957gcv.b(this.c, ouo.c);
}
}