49 lines
1.3 KiB
Java
49 lines
1.3 KiB
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class BQN {
|
|
public final C1074VZj a;
|
|
public final Xdb c;
|
|
public final String e;
|
|
|
|
public BQN(String str, C1074VZj c1074VZj, Xdb xdb) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(c1074VZj, "");
|
|
this.e = str;
|
|
this.a = c1074VZj;
|
|
this.c = xdb;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.e;
|
|
C1074VZj c1074VZj = this.a;
|
|
Xdb xdb = this.c;
|
|
StringBuilder sb = new StringBuilder("DebitCardPromoVerification(promoCode=");
|
|
sb.append(str);
|
|
sb.append(", debitCardPromoFee=");
|
|
sb.append(c1074VZj);
|
|
sb.append(", debitCardStrikeThroughFee=");
|
|
sb.append(xdb);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
int hashCode = this.e.hashCode();
|
|
int hashCode2 = this.a.hashCode();
|
|
Xdb xdb = this.c;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (xdb == null ? 0 : xdb.hashCode());
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof BQN)) {
|
|
return false;
|
|
}
|
|
BQN bqn = (BQN) obj;
|
|
return C14957gcv.b((Object) this.e, (Object) bqn.e) && C14957gcv.b(this.a, bqn.a) && C14957gcv.b(this.c, bqn.c);
|
|
}
|
|
}
|