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

46 lines
1.2 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class VoY {
@SerializedName("questionNumber")
public final String b;
@SerializedName("section")
public final String c;
@SerializedName("question")
public final String d;
public final String toString() {
String str = this.c;
String str2 = this.b;
String str3 = this.d;
StringBuilder sb = new StringBuilder("SummaryQuestionEntity(section=");
sb.append(str);
sb.append(", questionNumber=");
sb.append(str2);
sb.append(", question=");
sb.append(str3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((this.c.hashCode() * 31) + this.b.hashCode()) * 31) + this.d.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof VoY)) {
return false;
}
VoY voY = (VoY) obj;
return C14957gcv.b((Object) this.c, (Object) voY.c) && C14957gcv.b((Object) this.b, (Object) voY.b) && C14957gcv.b((Object) this.d, (Object) voY.d);
}
}