63 lines
1.7 KiB
Java
63 lines
1.7 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class KJl {
|
|
|
|
@SerializedName("dateOfBirth")
|
|
private final String a;
|
|
|
|
@SerializedName("cardType")
|
|
private final String c;
|
|
|
|
@SerializedName("cardId")
|
|
private final String d;
|
|
|
|
@SerializedName("tilesVersion")
|
|
private final String e;
|
|
|
|
public KJl(String str, String str2, String str3, String str4) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
C14957gcv.e(str4, "");
|
|
this.d = str;
|
|
this.c = str2;
|
|
this.a = str3;
|
|
this.e = str4;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.d;
|
|
String str2 = this.c;
|
|
String str3 = this.a;
|
|
String str4 = this.e;
|
|
StringBuilder sb = new StringBuilder("VerifyUserPinRequest(cardId=");
|
|
sb.append(str);
|
|
sb.append(", cardType=");
|
|
sb.append(str2);
|
|
sb.append(", dateOfBirth=");
|
|
sb.append(str3);
|
|
sb.append(", tilesVersion=");
|
|
sb.append(str4);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((((this.d.hashCode() * 31) + this.c.hashCode()) * 31) + this.a.hashCode()) * 31) + this.e.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof KJl)) {
|
|
return false;
|
|
}
|
|
KJl kJl = (KJl) obj;
|
|
return C14957gcv.b((Object) this.d, (Object) kJl.d) && C14957gcv.b((Object) this.c, (Object) kJl.c) && C14957gcv.b((Object) this.a, (Object) kJl.a) && C14957gcv.b((Object) this.e, (Object) kJl.e);
|
|
}
|
|
}
|