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

63 lines
1.8 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class sQE {
@SerializedName("feeCode")
public final String a;
@SerializedName("annualFee")
public final String b;
@SerializedName("issuingFee")
public final String c;
@SerializedName("annualRemark")
public final String d;
@SerializedName("deliveryFee")
public final String e;
public final String toString() {
String str = this.a;
String str2 = this.b;
String str3 = this.c;
String str4 = this.e;
String str5 = this.d;
StringBuilder sb = new StringBuilder("DebitCardPromoFeeEntity(feeCode=");
sb.append(str);
sb.append(", annualFee=");
sb.append(str2);
sb.append(", issuingFee=");
sb.append(str3);
sb.append(", deliveryFee=");
sb.append(str4);
sb.append(", annualRemark=");
sb.append(str5);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.a.hashCode();
int hashCode2 = this.b.hashCode();
int hashCode3 = this.c.hashCode();
int hashCode4 = this.e.hashCode();
String str = this.d;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (str == null ? 0 : str.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof sQE)) {
return false;
}
sQE sqe = (sQE) obj;
return C14957gcv.b((Object) this.a, (Object) sqe.a) && C14957gcv.b((Object) this.b, (Object) sqe.b) && C14957gcv.b((Object) this.c, (Object) sqe.c) && C14957gcv.b((Object) this.e, (Object) sqe.e) && C14957gcv.b((Object) this.d, (Object) sqe.d);
}
}