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

76 lines
2.3 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* renamed from: o.cIa, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C6087cIa {
@SerializedName("productType")
private final String a;
@SerializedName("ncbTransactionId")
private final String b;
@SerializedName("tilesVersion")
private final String c;
@SerializedName("cardCompany")
private final String d;
@SerializedName("ncbAcceptedFlag")
private final String e;
public C6087cIa(String str, String str2, String str3, String str4, String str5) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
this.a = str;
this.e = str2;
this.c = str3;
this.b = str4;
this.d = str5;
}
public final String toString() {
String str = this.a;
String str2 = this.e;
String str3 = this.c;
String str4 = this.b;
String str5 = this.d;
StringBuilder sb = new StringBuilder("PostNCBRequest(productType=");
sb.append(str);
sb.append(", ncbAcceptedFlag=");
sb.append(str2);
sb.append(", tilesVersion=");
sb.append(str3);
sb.append(", ncbTransactionId=");
sb.append(str4);
sb.append(", cardCompany=");
sb.append(str5);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.a.hashCode();
int hashCode2 = this.e.hashCode();
int hashCode3 = this.c.hashCode();
String str = this.b;
int hashCode4 = str == null ? 0 : str.hashCode();
String str2 = this.d;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (str2 != null ? str2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C6087cIa)) {
return false;
}
C6087cIa c6087cIa = (C6087cIa) obj;
return C14957gcv.b((Object) this.a, (Object) c6087cIa.a) && C14957gcv.b((Object) this.e, (Object) c6087cIa.e) && C14957gcv.b((Object) this.c, (Object) c6087cIa.c) && C14957gcv.b((Object) this.b, (Object) c6087cIa.b) && C14957gcv.b((Object) this.d, (Object) c6087cIa.d);
}
}