52 lines
1.5 KiB
Java
52 lines
1.5 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class HUT {
|
|
|
|
@SerializedName("investObjective")
|
|
public final String a;
|
|
|
|
@SerializedName("sourceOfIncome")
|
|
public final String c;
|
|
|
|
@SerializedName("sourceOfFundList")
|
|
public final List<ISF> d;
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
List<ISF> list = this.d;
|
|
String str2 = this.a;
|
|
StringBuilder sb = new StringBuilder("SingleFormReviewInvestmentInfoEntity(sourceOfIncome=");
|
|
sb.append(str);
|
|
sb.append(", sourceOfFundList=");
|
|
sb.append(list);
|
|
sb.append(", investObjective=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.c;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
List<ISF> list = this.d;
|
|
int hashCode2 = list == null ? 0 : list.hashCode();
|
|
String str2 = this.a;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (str2 != null ? str2.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof HUT)) {
|
|
return false;
|
|
}
|
|
HUT hut = (HUT) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) hut.c) && C14957gcv.b(this.d, hut.d) && C14957gcv.b((Object) this.a, (Object) hut.a);
|
|
}
|
|
}
|