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

41 lines
1023 B
Java

package o;
/* loaded from: classes3.dex */
public final class BBP {
public final String a;
public final String d;
public BBP(String str, String str2) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.d = str;
this.a = str2;
}
public final String toString() {
String str = this.d;
String str2 = this.a;
StringBuilder sb = new StringBuilder("InstallmentFrequency(unit=");
sb.append(str);
sb.append(", perUnit=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (this.d.hashCode() * 31) + this.a.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof BBP)) {
return false;
}
BBP bbp = (BBP) obj;
return C14957gcv.b((Object) this.d, (Object) bbp.d) && C14957gcv.b((Object) this.a, (Object) bbp.a);
}
}