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

59 lines
1.7 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class HbJ {
@SerializedName("repaymentDisclaimer")
public final String a;
@SerializedName("minPayAmount")
public final String b;
@SerializedName("minPayPercent")
public final String c;
@SerializedName("accounts")
public final List<fDF> e;
public final String toString() {
List<fDF> list = this.e;
String str = this.a;
String str2 = this.c;
String str3 = this.b;
StringBuilder sb = new StringBuilder("EasycashOperativeAccountEntity(accounts=");
sb.append(list);
sb.append(", repaymentDisclaimer=");
sb.append(str);
sb.append(", minPayPercent=");
sb.append(str2);
sb.append(", minPayAmount=");
sb.append(str3);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.e.hashCode();
String str = this.a;
int hashCode2 = str == null ? 0 : str.hashCode();
String str2 = this.c;
int hashCode3 = str2 == null ? 0 : str2.hashCode();
String str3 = this.b;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str3 != null ? str3.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof HbJ)) {
return false;
}
HbJ hbJ = (HbJ) obj;
return C14957gcv.b(this.e, hbJ.e) && C14957gcv.b((Object) this.a, (Object) hbJ.a) && C14957gcv.b((Object) this.c, (Object) hbJ.c) && C14957gcv.b((Object) this.b, (Object) hbJ.b);
}
}