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

95 lines
2.9 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class InK {
@SerializedName("deliveryFee")
private final double a;
@SerializedName("annualFee")
private final double b;
@SerializedName("productCode")
private final String c;
@SerializedName("issuingFee")
private final double d;
@SerializedName("oldProductCode")
private final String e;
@SerializedName("productType")
private final String f;
@SerializedName("requestType")
private final String g;
@SerializedName("promoCode")
private final String i;
public InK(String str, String str2, String str3, double d, double d2, double d3, String str4) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
C14957gcv.e(str4, "");
this.i = str;
this.g = str2;
this.c = str3;
this.e = null;
this.b = d;
this.d = d2;
this.a = d3;
this.f = str4;
}
public final String toString() {
String str = this.i;
String str2 = this.g;
String str3 = this.c;
String str4 = this.e;
double d = this.b;
double d2 = this.d;
double d3 = this.a;
String str5 = this.f;
StringBuilder sb = new StringBuilder("DebitCardPromoVerificationRequest(promoCode=");
sb.append(str);
sb.append(", requestType=");
sb.append(str2);
sb.append(", productCode=");
sb.append(str3);
sb.append(", oldProductCode=");
sb.append(str4);
sb.append(", annualFee=");
sb.append(d);
sb.append(", issuingFee=");
sb.append(d2);
sb.append(", deliveryFee=");
sb.append(d3);
sb.append(", productType=");
sb.append(str5);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.i.hashCode();
int hashCode2 = this.g.hashCode();
int hashCode3 = this.c.hashCode();
String str = this.e;
return (((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str == null ? 0 : str.hashCode())) * 31) + Double.hashCode(this.b)) * 31) + Double.hashCode(this.d)) * 31) + Double.hashCode(this.a)) * 31) + this.f.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof InK)) {
return false;
}
InK inK = (InK) obj;
return C14957gcv.b((Object) this.i, (Object) inK.i) && C14957gcv.b((Object) this.g, (Object) inK.g) && C14957gcv.b((Object) this.c, (Object) inK.c) && C14957gcv.b((Object) this.e, (Object) inK.e) && Double.compare(this.b, inK.b) == 0 && Double.compare(this.d, inK.d) == 0 && Double.compare(this.a, inK.a) == 0 && C14957gcv.b((Object) this.f, (Object) inK.f);
}
}