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

72 lines
2.0 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* renamed from: o.fq, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C14271fq {
@SerializedName("userId")
private final String a;
@SerializedName("groupName")
private final String c;
@SerializedName("tcBNPLAccepted")
private final boolean d;
@SerializedName("tcVersion")
private final String e;
public C14271fq(String str, String str2, String str3, boolean z) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
this.a = str;
this.c = str2;
this.e = str3;
this.d = z;
}
public final String toString() {
String str = this.a;
String str2 = this.c;
String str3 = this.e;
boolean z = this.d;
StringBuilder sb = new StringBuilder("BNPLTermAndConditionRequest(userId=");
sb.append(str);
sb.append(", groupName=");
sb.append(str2);
sb.append(", tcVersion=");
sb.append(str3);
sb.append(", tcBNPLAccepted=");
sb.append(z);
sb.append(")");
return sb.toString();
}
/* JADX WARN: Multi-variable type inference failed */
public final int hashCode() {
int hashCode = this.a.hashCode();
int hashCode2 = this.c.hashCode();
int hashCode3 = this.e.hashCode();
boolean z = this.d;
int i = z;
if (z != 0) {
i = 1;
}
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + i;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C14271fq)) {
return false;
}
C14271fq c14271fq = (C14271fq) obj;
return C14957gcv.b((Object) this.a, (Object) c14271fq.a) && C14957gcv.b((Object) this.c, (Object) c14271fq.c) && C14957gcv.b((Object) this.e, (Object) c14271fq.e) && this.d == c14271fq.d;
}
}