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

65 lines
2.1 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import io.beid.beidk.definitions.BeIDParams;
import org.threeten.bp.OffsetDateTime;
/* renamed from: o.uBC, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C17122uBC extends Pag {
@SerializedName("transactionDateTime")
public final OffsetDateTime a;
@SerializedName("remainingCardBalance")
public final double b;
@SerializedName(BeIDParams.BEID_TRANSACTION_ID)
public final String c;
@SerializedName("remainingCurrency")
private final String d;
public C17122uBC(OffsetDateTime offsetDateTime, String str, double d, String str2) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.a = offsetDateTime;
this.c = str;
this.b = d;
this.d = str2;
}
public final String toString() {
OffsetDateTime offsetDateTime = this.a;
String str = this.c;
double d = this.b;
String str2 = this.d;
StringBuilder sb = new StringBuilder("PrepaidCashOutConfirmation(transactionDateTime=");
sb.append(offsetDateTime);
sb.append(", transactionId=");
sb.append(str);
sb.append(", remainingCardBalance=");
sb.append(d);
sb.append(", remainingCurrency=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
OffsetDateTime offsetDateTime = this.a;
return ((((((offsetDateTime == null ? 0 : offsetDateTime.hashCode()) * 31) + this.c.hashCode()) * 31) + Double.hashCode(this.b)) * 31) + this.d.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C17122uBC)) {
return false;
}
C17122uBC c17122uBC = (C17122uBC) obj;
return C14957gcv.b(this.a, c17122uBC.a) && C14957gcv.b((Object) this.c, (Object) c17122uBC.c) && Double.compare(this.b, c17122uBC.b) == 0 && C14957gcv.b((Object) this.d, (Object) c17122uBC.d);
}
}