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

79 lines
2.7 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import org.threeten.bp.OffsetDateTime;
/* loaded from: classes3.dex */
public final class UHc {
public final OffsetDateTime a;
public final String b;
public final String c;
public final String d;
public final String e;
public final String f;
public final String j;
public UHc(String str, String str2, String str3, String str4, String str5, OffsetDateTime offsetDateTime, String str6) {
this.e = str;
this.c = str2;
this.j = str3;
this.d = str4;
this.f = str5;
this.a = offsetDateTime;
this.b = str6;
}
public final String toString() {
String str = this.e;
String str2 = this.c;
String str3 = this.j;
String str4 = this.d;
String str5 = this.f;
OffsetDateTime offsetDateTime = this.a;
String str6 = this.b;
StringBuilder sb = new StringBuilder("MutualFunds(cardTitle=");
sb.append(str);
sb.append(", iconUrl=");
sb.append(str2);
sb.append(", totalBalance=");
sb.append(str3);
sb.append(", netGain=");
sb.append(str4);
sb.append(", netGainPercent=");
sb.append(str5);
sb.append(", lastUpdatedDate=");
sb.append(offsetDateTime);
sb.append(", errorDescription=");
sb.append(str6);
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.j;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
String str4 = this.d;
int hashCode4 = str4 == null ? 0 : str4.hashCode();
String str5 = this.f;
int hashCode5 = str5 == null ? 0 : str5.hashCode();
OffsetDateTime offsetDateTime = this.a;
int hashCode6 = offsetDateTime == null ? 0 : offsetDateTime.hashCode();
String str6 = this.b;
return (((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + (str6 != null ? str6.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof UHc)) {
return false;
}
UHc uHc = (UHc) obj;
return C14957gcv.b((Object) this.e, (Object) uHc.e) && C14957gcv.b((Object) this.c, (Object) uHc.c) && C14957gcv.b((Object) this.j, (Object) uHc.j) && C14957gcv.b((Object) this.d, (Object) uHc.d) && C14957gcv.b((Object) this.f, (Object) uHc.f) && C14957gcv.b(this.a, uHc.a) && C14957gcv.b((Object) this.b, (Object) uHc.b);
}
}