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

86 lines
2.4 KiB
Java

package o;
import java.util.List;
import o.WS;
/* loaded from: classes3.dex */
public final class WR extends WS {
public final List<IeS> a;
public final String b;
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public WR(String str, List<IeS> list) {
super(WS.IeS.INTEREST);
C14957gcv.e(str, "");
C14957gcv.e(list, "");
this.b = str;
this.a = list;
}
/* loaded from: classes3.dex */
public static final class IeS {
public final String b;
public final String d;
public IeS(String str, String str2) {
this.d = str;
this.b = str2;
}
public final String toString() {
String str = this.d;
String str2 = this.b;
StringBuilder sb = new StringBuilder("InterestOptionDisplay(interest=");
sb.append(str);
sb.append(", installmentRage=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.d;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.b;
return (hashCode * 31) + (str2 != null ? str2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof IeS)) {
return false;
}
IeS ieS = (IeS) obj;
return C14957gcv.b((Object) this.d, (Object) ieS.d) && C14957gcv.b((Object) this.b, (Object) ieS.b);
}
}
public final String toString() {
String str = this.b;
List<IeS> list = this.a;
StringBuilder sb = new StringBuilder("ProductCatalogueInterestOptionsDisplay(principal=");
sb.append(str);
sb.append(", options=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.b.hashCode() * 31) + this.a.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof WR)) {
return false;
}
WR wr = (WR) obj;
return C14957gcv.b((Object) this.b, (Object) wr.b) && C14957gcv.b(this.a, wr.a);
}
}