40 lines
995 B
Java
40 lines
995 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class rFT {
|
|
|
|
@SerializedName("description")
|
|
public final String b;
|
|
|
|
@SerializedName("rate")
|
|
public final double e;
|
|
|
|
public final String toString() {
|
|
double d = this.e;
|
|
String str = this.b;
|
|
StringBuilder sb = new StringBuilder("PrepaidTravelWalletDisplayRateEntity(rate=");
|
|
sb.append(d);
|
|
sb.append(", description=");
|
|
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 rFT)) {
|
|
return false;
|
|
}
|
|
rFT rft = (rFT) obj;
|
|
return Double.compare(this.e, rft.e) == 0 && C14957gcv.b((Object) this.b, (Object) rft.b);
|
|
}
|
|
}
|