53 lines
1.4 KiB
Java
53 lines
1.4 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
import java.util.List;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class FPG {
|
||
|
|
||
|
@SerializedName("question")
|
||
|
public final String a;
|
||
|
|
||
|
@SerializedName("questionNumber")
|
||
|
public final String c;
|
||
|
|
||
|
@SerializedName("section")
|
||
|
public final String d;
|
||
|
|
||
|
@SerializedName("answers")
|
||
|
public final List<C17238vAt> e;
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.d;
|
||
|
String str2 = this.c;
|
||
|
String str3 = this.a;
|
||
|
List<C17238vAt> list = this.e;
|
||
|
StringBuilder sb = new StringBuilder("QuestionEntity(section=");
|
||
|
sb.append(str);
|
||
|
sb.append(", questionNumber=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", question=");
|
||
|
sb.append(str3);
|
||
|
sb.append(", answers=");
|
||
|
sb.append(list);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (((((this.d.hashCode() * 31) + this.c.hashCode()) * 31) + this.a.hashCode()) * 31) + this.e.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof FPG)) {
|
||
|
return false;
|
||
|
}
|
||
|
FPG fpg = (FPG) obj;
|
||
|
return C14957gcv.b((Object) this.d, (Object) fpg.d) && C14957gcv.b((Object) this.c, (Object) fpg.c) && C14957gcv.b((Object) this.a, (Object) fpg.a) && C14957gcv.b(this.e, fpg.e);
|
||
|
}
|
||
|
}
|