48 lines
1.2 KiB
Java
48 lines
1.2 KiB
Java
package o;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class Bct {
|
|
public final int a;
|
|
public final tGN b;
|
|
public final List<dBS> c;
|
|
|
|
public Bct(int i, List<dBS> list, tGN tgn) {
|
|
C14957gcv.e(list, "");
|
|
C14957gcv.e(tgn, "");
|
|
this.a = i;
|
|
this.c = list;
|
|
this.b = tgn;
|
|
}
|
|
|
|
public final String toString() {
|
|
int i = this.a;
|
|
List<dBS> list = this.c;
|
|
tGN tgn = this.b;
|
|
StringBuilder sb = new StringBuilder("ECouponTransaction(numOfTransaction=");
|
|
sb.append(i);
|
|
sb.append(", eCouponTransactionData=");
|
|
sb.append(list);
|
|
sb.append(", eCouponTransactionPaginate=");
|
|
sb.append(tgn);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((Integer.hashCode(this.a) * 31) + this.c.hashCode()) * 31) + this.b.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof Bct)) {
|
|
return false;
|
|
}
|
|
Bct bct = (Bct) obj;
|
|
return this.a == bct.a && C14957gcv.b(this.c, bct.c) && C14957gcv.b(this.b, bct.b);
|
|
}
|
|
}
|