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

59 lines
1.5 KiB
Java

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