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