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

84 lines
2.6 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class xdk {
@SerializedName("tags")
public final List<vsi> a;
@SerializedName("assetType")
public final String b;
@SerializedName("shortBrokerName")
public final String c;
@SerializedName("otherChannelFlag")
public final Boolean d;
@SerializedName("fundCode")
public final String e;
@SerializedName("yield")
public final String h;
@SerializedName("yieldDate")
public final String i;
public final String toString() {
String str = this.e;
String str2 = this.c;
String str3 = this.h;
String str4 = this.i;
Boolean bool = this.d;
String str5 = this.b;
List<vsi> list = this.a;
StringBuilder sb = new StringBuilder("DiscoverTopItemEntity(fundCode=");
sb.append(str);
sb.append(", shortBrokerName=");
sb.append(str2);
sb.append(", yield=");
sb.append(str3);
sb.append(", yieldDate=");
sb.append(str4);
sb.append(", otherChannelFlag=");
sb.append(bool);
sb.append(", assetType=");
sb.append(str5);
sb.append(", tags=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.e;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.c;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.h;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
String str4 = this.i;
int hashCode4 = str4 == null ? 0 : str4.hashCode();
Boolean bool = this.d;
int hashCode5 = bool == null ? 0 : bool.hashCode();
String str5 = this.b;
int hashCode6 = str5 == null ? 0 : str5.hashCode();
List<vsi> list = this.a;
return (((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + (list != null ? list.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof xdk)) {
return false;
}
xdk xdkVar = (xdk) obj;
return C14957gcv.b((Object) this.e, (Object) xdkVar.e) && C14957gcv.b((Object) this.c, (Object) xdkVar.c) && C14957gcv.b((Object) this.h, (Object) xdkVar.h) && C14957gcv.b((Object) this.i, (Object) xdkVar.i) && C14957gcv.b(this.d, xdkVar.d) && C14957gcv.b((Object) this.b, (Object) xdkVar.b) && C14957gcv.b(this.a, xdkVar.a);
}
}