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

43 lines
1.1 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class sfG {
@SerializedName("installment")
public final Double b;
@SerializedName("dueDate")
public final String c;
public final String toString() {
Double d = this.b;
String str = this.c;
StringBuilder sb = new StringBuilder("BillPaymentLoanInstallmentCoinEntity(installment=");
sb.append(d);
sb.append(", dueDate=");
sb.append(str);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
Double d = this.b;
int hashCode = d == null ? 0 : d.hashCode();
String str = this.c;
return (hashCode * 31) + (str != null ? str.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof sfG)) {
return false;
}
sfG sfg = (sfG) obj;
return C14957gcv.b(this.b, sfg.b) && C14957gcv.b((Object) this.c, (Object) sfg.c);
}
}