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

70 lines
1.9 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class LrN {
@SerializedName("cardType")
private final String a;
@SerializedName("dateOfBirth")
private final String c;
@SerializedName("cardId")
private final String d;
@SerializedName("app_info")
public String e;
public /* synthetic */ LrN(String str, String str2, String str3) {
this(str, str2, str3, (byte) 0);
}
private LrN(String str, String str2, String str3, byte b) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
this.d = str;
this.a = str2;
this.c = str3;
this.e = null;
}
public final String toString() {
String str = this.d;
String str2 = this.a;
String str3 = this.c;
String str4 = this.e;
StringBuilder sb = new StringBuilder("VerifyUserRequest(cardId=");
sb.append(str);
sb.append(", cardType=");
sb.append(str2);
sb.append(", dateOfBirth=");
sb.append(str3);
sb.append(", appInfo=");
sb.append(str4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.d.hashCode();
int hashCode2 = this.a.hashCode();
int hashCode3 = this.c.hashCode();
String str = this.e;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str == null ? 0 : str.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof LrN)) {
return false;
}
LrN lrN = (LrN) obj;
return C14957gcv.b((Object) this.d, (Object) lrN.d) && C14957gcv.b((Object) this.a, (Object) lrN.a) && C14957gcv.b((Object) this.c, (Object) lrN.c) && C14957gcv.b((Object) this.e, (Object) lrN.e);
}
}