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

114 lines
3.5 KiB
Java

package o;
/* loaded from: classes3.dex */
public final class NS extends EO {
public final String a;
public final String b;
public final String c;
public final RVV d;
public final String e;
public NS(String str, String str2, RVV rvv, String str3, String str4) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(rvv, "");
C14957gcv.e(str3, "");
this.a = str;
this.b = str2;
this.d = rvv;
this.e = str3;
this.c = str4;
}
/* loaded from: classes3.dex */
public static final class RVV {
public final String a;
public final String c;
public final String d;
public final WZ e;
public RVV(String str, String str2, String str3, WZ wz) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
C14957gcv.e(wz, "");
this.a = str;
this.d = str2;
this.c = str3;
this.e = wz;
}
public final String toString() {
String str = this.a;
String str2 = this.d;
String str3 = this.c;
WZ wz = this.e;
StringBuilder sb = new StringBuilder("LoanInfo(loanAmount=");
sb.append(str);
sb.append(", repayment=");
sb.append(str2);
sb.append(", repaymentUnit=");
sb.append(str3);
sb.append(", promotion=");
sb.append(wz);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((this.a.hashCode() * 31) + this.d.hashCode()) * 31) + this.c.hashCode()) * 31) + this.e.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof RVV)) {
return false;
}
RVV rvv = (RVV) obj;
return C14957gcv.b((Object) this.a, (Object) rvv.a) && C14957gcv.b((Object) this.d, (Object) rvv.d) && C14957gcv.b((Object) this.c, (Object) rvv.c) && C14957gcv.b(this.e, rvv.e);
}
}
public final String toString() {
String str = this.a;
String str2 = this.b;
RVV rvv = this.d;
String str3 = this.e;
String str4 = this.c;
StringBuilder sb = new StringBuilder("HmlSuccessDisplay(referenceId=");
sb.append(str);
sb.append(", loanDate=");
sb.append(str2);
sb.append(", loanInfo=");
sb.append(rvv);
sb.append(", receivingAccount=");
sb.append(str3);
sb.append(", receiver=");
sb.append(str4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.a.hashCode();
int hashCode2 = this.b.hashCode();
int hashCode3 = this.d.hashCode();
int hashCode4 = this.e.hashCode();
String str = this.c;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (str == null ? 0 : str.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof NS)) {
return false;
}
NS ns = (NS) obj;
return C14957gcv.b((Object) this.a, (Object) ns.a) && C14957gcv.b((Object) this.b, (Object) ns.b) && C14957gcv.b(this.d, ns.d) && C14957gcv.b((Object) this.e, (Object) ns.e) && C14957gcv.b((Object) this.c, (Object) ns.c);
}
}