51 lines
1.5 KiB
Java
51 lines
1.5 KiB
Java
package o;
|
|
|
|
import org.threeten.bp.OffsetDateTime;
|
|
|
|
/* renamed from: o.sAY, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public final class C16888sAY {
|
|
public final OffsetDateTime b;
|
|
public final double d;
|
|
public final String e;
|
|
|
|
public C16888sAY(double d, String str, OffsetDateTime offsetDateTime) {
|
|
C14957gcv.e(str, "");
|
|
this.d = d;
|
|
this.e = str;
|
|
this.b = offsetDateTime;
|
|
}
|
|
|
|
public final String toString() {
|
|
double d = this.d;
|
|
String str = this.e;
|
|
OffsetDateTime offsetDateTime = this.b;
|
|
StringBuilder sb = new StringBuilder("FxRate(rate=");
|
|
sb.append(d);
|
|
sb.append(", description=");
|
|
sb.append(str);
|
|
sb.append(", tranDateTime=");
|
|
sb.append(offsetDateTime);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = Double.hashCode(this.d);
|
|
int hashCode2 = this.e.hashCode();
|
|
OffsetDateTime offsetDateTime = this.b;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (offsetDateTime == null ? 0 : offsetDateTime.hashCode());
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof C16888sAY)) {
|
|
return false;
|
|
}
|
|
C16888sAY c16888sAY = (C16888sAY) obj;
|
|
return Double.compare(this.d, c16888sAY.d) == 0 && C14957gcv.b((Object) this.e, (Object) c16888sAY.e) && C14957gcv.b(this.b, c16888sAY.b);
|
|
}
|
|
}
|