84 lines
2.5 KiB
Java
84 lines
2.5 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class Psd {
|
||
|
|
||
|
@SerializedName("needMoreLine")
|
||
|
private final String a;
|
||
|
|
||
|
@SerializedName("loanAmount")
|
||
|
private final String b;
|
||
|
|
||
|
@SerializedName("applicationId")
|
||
|
private final String c;
|
||
|
|
||
|
@SerializedName("duration")
|
||
|
private final String d;
|
||
|
|
||
|
@SerializedName("productType")
|
||
|
private final String e;
|
||
|
|
||
|
@SerializedName("tilesVersion")
|
||
|
private final String h;
|
||
|
|
||
|
public Psd(String str, String str2, String str3, String str4, String str5, String str6) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(str2, "");
|
||
|
C14957gcv.e(str3, "");
|
||
|
C14957gcv.e(str4, "");
|
||
|
C14957gcv.e(str5, "");
|
||
|
this.h = str;
|
||
|
this.e = str2;
|
||
|
this.c = str3;
|
||
|
this.d = str4;
|
||
|
this.b = str5;
|
||
|
this.a = str6;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.h;
|
||
|
String str2 = this.e;
|
||
|
String str3 = this.c;
|
||
|
String str4 = this.d;
|
||
|
String str5 = this.b;
|
||
|
String str6 = this.a;
|
||
|
StringBuilder sb = new StringBuilder("EasycashMHMCInfoRequest(tilesVersion=");
|
||
|
sb.append(str);
|
||
|
sb.append(", productType=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", applicationId=");
|
||
|
sb.append(str3);
|
||
|
sb.append(", duration=");
|
||
|
sb.append(str4);
|
||
|
sb.append(", loanAmount=");
|
||
|
sb.append(str5);
|
||
|
sb.append(", needMoreLine=");
|
||
|
sb.append(str6);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
int hashCode = this.h.hashCode();
|
||
|
int hashCode2 = this.e.hashCode();
|
||
|
int hashCode3 = this.c.hashCode();
|
||
|
int hashCode4 = this.d.hashCode();
|
||
|
int hashCode5 = this.b.hashCode();
|
||
|
String str = this.a;
|
||
|
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + (str == null ? 0 : str.hashCode());
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof Psd)) {
|
||
|
return false;
|
||
|
}
|
||
|
Psd psd = (Psd) obj;
|
||
|
return C14957gcv.b((Object) this.h, (Object) psd.h) && C14957gcv.b((Object) this.e, (Object) psd.e) && C14957gcv.b((Object) this.c, (Object) psd.c) && C14957gcv.b((Object) this.d, (Object) psd.d) && C14957gcv.b((Object) this.b, (Object) psd.b) && C14957gcv.b((Object) this.a, (Object) psd.a);
|
||
|
}
|
||
|
}
|