56 lines
1.5 KiB
Java
56 lines
1.5 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class Wun {
|
||
|
|
||
|
@SerializedName("securitiesRegisteredFlag")
|
||
|
private final String b;
|
||
|
|
||
|
@SerializedName("tilesVersion")
|
||
|
private final String c;
|
||
|
|
||
|
@SerializedName("mutualFundsRegisteredFlag")
|
||
|
private final String d;
|
||
|
|
||
|
public Wun(String str, String str2, String str3) {
|
||
|
C14957gcv.e(str3, "");
|
||
|
this.b = str;
|
||
|
this.d = str2;
|
||
|
this.c = str3;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.b;
|
||
|
String str2 = this.d;
|
||
|
String str3 = this.c;
|
||
|
StringBuilder sb = new StringBuilder("InvestmentSummaryRequest(securitiesRegisteredFlag=");
|
||
|
sb.append(str);
|
||
|
sb.append(", mutualFundsRegisteredFlag=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", tilesVersion=");
|
||
|
sb.append(str3);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
String str = this.b;
|
||
|
int hashCode = str == null ? 0 : str.hashCode();
|
||
|
String str2 = this.d;
|
||
|
return (((hashCode * 31) + (str2 != null ? str2.hashCode() : 0)) * 31) + this.c.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof Wun)) {
|
||
|
return false;
|
||
|
}
|
||
|
Wun wun = (Wun) obj;
|
||
|
return C14957gcv.b((Object) this.b, (Object) wun.b) && C14957gcv.b((Object) this.d, (Object) wun.d) && C14957gcv.b((Object) this.c, (Object) wun.c);
|
||
|
}
|
||
|
}
|