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

47 lines
1.1 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class UMV extends Pag {
@SerializedName("buyRate")
public final BST c;
@SerializedName("sellRate")
public final BST d;
public UMV(BST bst, BST bst2) {
C14957gcv.e(bst, "");
C14957gcv.e(bst2, "");
this.c = bst;
this.d = bst2;
}
public final String toString() {
BST bst = this.c;
BST bst2 = this.d;
StringBuilder sb = new StringBuilder("PrepaidTravelWalletDisplayRateSummary(buyRate=");
sb.append(bst);
sb.append(", sellRate=");
sb.append(bst2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.c.hashCode() * 31) + this.d.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof UMV)) {
return false;
}
UMV umv = (UMV) obj;
return C14957gcv.b(this.c, umv.c) && C14957gcv.b(this.d, umv.d);
}
}