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

43 lines
1.1 KiB
Java

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