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

53 lines
1.4 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class gFW {
@SerializedName("unit")
public final String a;
@SerializedName("perUnit")
public final String b;
@SerializedName("amount")
public final String c;
@SerializedName("frequency")
public final String e;
public final String toString() {
String str = this.c;
String str2 = this.e;
String str3 = this.b;
String str4 = this.a;
StringBuilder sb = new StringBuilder("Installment(amount=");
sb.append(str);
sb.append(", frequency=");
sb.append(str2);
sb.append(", perUnit=");
sb.append(str3);
sb.append(", unit=");
sb.append(str4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.c;
return ((((((str == null ? 0 : str.hashCode()) * 31) + this.e.hashCode()) * 31) + this.b.hashCode()) * 31) + this.a.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof gFW)) {
return false;
}
gFW gfw = (gFW) obj;
return C14957gcv.b((Object) this.c, (Object) gfw.c) && C14957gcv.b((Object) this.e, (Object) gfw.e) && C14957gcv.b((Object) this.b, (Object) gfw.b) && C14957gcv.b((Object) this.a, (Object) gfw.a);
}
}