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

59 lines
1.6 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class KQF {
@SerializedName("tokenId")
public final String a;
@SerializedName("accountName")
public final String c;
@SerializedName("fee")
public final Double d;
@SerializedName("totalAmount")
public final Double e;
public final String toString() {
String str = this.c;
Double d = this.e;
Double d2 = this.d;
String str2 = this.a;
StringBuilder sb = new StringBuilder("CrossBorderVerificationEntity(accountName=");
sb.append(str);
sb.append(", totalAmount=");
sb.append(d);
sb.append(", fee=");
sb.append(d2);
sb.append(", tokenId=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.c;
int hashCode = str == null ? 0 : str.hashCode();
Double d = this.e;
int hashCode2 = d == null ? 0 : d.hashCode();
Double d2 = this.d;
int hashCode3 = d2 == null ? 0 : d2.hashCode();
String str2 = this.a;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str2 != null ? str2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof KQF)) {
return false;
}
KQF kqf = (KQF) obj;
return C14957gcv.b((Object) this.c, (Object) kqf.c) && C14957gcv.b(this.e, kqf.e) && C14957gcv.b(this.d, kqf.d) && C14957gcv.b((Object) this.a, (Object) kqf.a);
}
}