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

59 lines
1.5 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class mer {
@SerializedName("tilesVersion")
public String c;
@SerializedName("flowType")
private final String d;
@SerializedName("productType")
private final String e;
public /* synthetic */ mer(String str, String str2) {
this(str, str2, "");
}
private mer(String str, String str2, String str3) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
this.e = str;
this.d = str2;
this.c = str3;
}
public final String toString() {
String str = this.e;
String str2 = this.d;
String str3 = this.c;
StringBuilder sb = new StringBuilder("PostValidateAutoEligibilityRequest(productType=");
sb.append(str);
sb.append(", flowType=");
sb.append(str2);
sb.append(", tilesVersion=");
sb.append(str3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((this.e.hashCode() * 31) + this.d.hashCode()) * 31) + this.c.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof mer)) {
return false;
}
mer merVar = (mer) obj;
return C14957gcv.b((Object) this.e, (Object) merVar.e) && C14957gcv.b((Object) this.d, (Object) merVar.d) && C14957gcv.b((Object) this.c, (Object) merVar.c);
}
}