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

51 lines
1.4 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class ULs {
public final double a;
public final double b;
public final String c;
public final String d;
public ULs(String str, double d, double d2, String str2) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.c = str;
this.b = d;
this.a = d2;
this.d = str2;
}
public final String toString() {
String str = this.c;
double d = this.b;
double d2 = this.a;
String str2 = this.d;
StringBuilder sb = new StringBuilder("CrossBorderVerification(accountName=");
sb.append(str);
sb.append(", totalAmount=");
sb.append(d);
sb.append(", fee=");
sb.append(d2);
sb.append(", tokenId=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((this.c.hashCode() * 31) + Double.hashCode(this.b)) * 31) + Double.hashCode(this.a)) * 31) + this.d.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof ULs)) {
return false;
}
ULs uLs = (ULs) obj;
return C14957gcv.b((Object) this.c, (Object) uLs.c) && Double.compare(this.b, uLs.b) == 0 && Double.compare(this.a, uLs.a) == 0 && C14957gcv.b((Object) this.d, (Object) uLs.d);
}
}