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