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

67 lines
1.8 KiB
Java

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