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

58 lines
1.6 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class PbB {
@SerializedName("unit")
public final String a;
@SerializedName("perUnit")
public final String b;
@SerializedName("everyUnit")
public final String c;
@SerializedName("description")
public final String d;
@SerializedName("code")
public final String e;
public final String toString() {
String str = this.e;
String str2 = this.d;
String str3 = this.a;
String str4 = this.b;
String str5 = this.c;
StringBuilder sb = new StringBuilder("InstallmentFrequency(code=");
sb.append(str);
sb.append(", description=");
sb.append(str2);
sb.append(", unit=");
sb.append(str3);
sb.append(", perUnit=");
sb.append(str4);
sb.append(", everyUnit=");
sb.append(str5);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((((this.e.hashCode() * 31) + this.d.hashCode()) * 31) + this.a.hashCode()) * 31) + this.b.hashCode()) * 31) + this.c.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof PbB)) {
return false;
}
PbB pbB = (PbB) obj;
return C14957gcv.b((Object) this.e, (Object) pbB.e) && C14957gcv.b((Object) this.d, (Object) pbB.d) && C14957gcv.b((Object) this.a, (Object) pbB.a) && C14957gcv.b((Object) this.b, (Object) pbB.b) && C14957gcv.b((Object) this.c, (Object) pbB.c);
}
}