40 lines
986 B
Java
40 lines
986 B
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class YcN {
|
|
public final String b;
|
|
public final double e;
|
|
|
|
public YcN(double d, String str) {
|
|
C14957gcv.e(str, "");
|
|
this.e = d;
|
|
this.b = str;
|
|
}
|
|
|
|
public final String toString() {
|
|
double d = this.e;
|
|
String str = this.b;
|
|
StringBuilder sb = new StringBuilder("CardlessATMVerificationProduct(amount=");
|
|
sb.append(d);
|
|
sb.append(", label=");
|
|
sb.append(str);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (Double.hashCode(this.e) * 31) + this.b.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof YcN)) {
|
|
return false;
|
|
}
|
|
YcN ycN = (YcN) obj;
|
|
return Double.compare(this.e, ycN.e) == 0 && C14957gcv.b((Object) this.b, (Object) ycN.b);
|
|
}
|
|
}
|