46 lines
1.1 KiB
Java
46 lines
1.1 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class BST {
|
|
|
|
@SerializedName("description")
|
|
public final String a;
|
|
|
|
@SerializedName("rate")
|
|
private final double c;
|
|
|
|
public BST(double d, String str) {
|
|
C14957gcv.e(str, "");
|
|
this.c = d;
|
|
this.a = str;
|
|
}
|
|
|
|
public final String toString() {
|
|
double d = this.c;
|
|
String str = this.a;
|
|
StringBuilder sb = new StringBuilder("PrepaidTravelWalletDisplayRate(rate=");
|
|
sb.append(d);
|
|
sb.append(", description=");
|
|
sb.append(str);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (Double.hashCode(this.c) * 31) + this.a.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof BST)) {
|
|
return false;
|
|
}
|
|
BST bst = (BST) obj;
|
|
return Double.compare(this.c, bst.c) == 0 && C14957gcv.b((Object) this.a, (Object) bst.a);
|
|
}
|
|
}
|