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

46 lines
1.2 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class RWD {
@SerializedName("description")
public final String b;
@SerializedName("rate")
public final double c;
@SerializedName("tranDateTime")
public final String d;
public final String toString() {
double d = this.c;
String str = this.b;
String str2 = this.d;
StringBuilder sb = new StringBuilder("FxRateEntity(rate=");
sb.append(d);
sb.append(", description=");
sb.append(str);
sb.append(", tranDateTime=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((Double.hashCode(this.c) * 31) + this.b.hashCode()) * 31) + this.d.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof RWD)) {
return false;
}
RWD rwd = (RWD) obj;
return Double.compare(this.c, rwd.c) == 0 && C14957gcv.b((Object) this.b, (Object) rwd.b) && C14957gcv.b((Object) this.d, (Object) rwd.d);
}
}