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

52 lines
1.5 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import io.beid.beidk.definitions.BeIDParams;
/* loaded from: classes3.dex */
public final class jgA {
@SerializedName("transactionDateTime")
public final String a;
@SerializedName(BeIDParams.BEID_TRANSACTION_ID)
public final String b;
@SerializedName("remainingBalance")
public final Double e;
public final String toString() {
Double d = this.e;
String str = this.a;
String str2 = this.b;
StringBuilder sb = new StringBuilder("CrossBorderConfirmationEntity(remainingBalance=");
sb.append(d);
sb.append(", transactionDateTime=");
sb.append(str);
sb.append(", transactionId=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
Double d = this.e;
int hashCode = d == null ? 0 : d.hashCode();
String str = this.a;
int hashCode2 = str == null ? 0 : str.hashCode();
String str2 = this.b;
return (((hashCode * 31) + hashCode2) * 31) + (str2 != null ? str2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof jgA)) {
return false;
}
jgA jga = (jgA) obj;
return C14957gcv.b(this.e, jga.e) && C14957gcv.b((Object) this.a, (Object) jga.a) && C14957gcv.b((Object) this.b, (Object) jga.b);
}
}