46 lines
1.2 KiB
Java
46 lines
1.2 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class FyS {
|
|
|
|
@SerializedName("choice")
|
|
public final String a;
|
|
|
|
@SerializedName("selected")
|
|
public final String b;
|
|
|
|
@SerializedName("score")
|
|
public final String e;
|
|
|
|
public final String toString() {
|
|
String str = this.b;
|
|
String str2 = this.a;
|
|
String str3 = this.e;
|
|
StringBuilder sb = new StringBuilder("InvestmentRiskAssessmentAnswerEntity(selected=");
|
|
sb.append(str);
|
|
sb.append(", choice=");
|
|
sb.append(str2);
|
|
sb.append(", score=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((this.b.hashCode() * 31) + this.a.hashCode()) * 31) + this.e.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof FyS)) {
|
|
return false;
|
|
}
|
|
FyS fyS = (FyS) obj;
|
|
return C14957gcv.b((Object) this.b, (Object) fyS.b) && C14957gcv.b((Object) this.a, (Object) fyS.a) && C14957gcv.b((Object) this.e, (Object) fyS.e);
|
|
}
|
|
}
|