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

54 lines
1.5 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import java.util.List;
/* loaded from: classes3.dex */
public final class oMb {
public final String a;
public final int c;
public final String d;
public final List<TXk> e;
public oMb(List<TXk> list, String str, int i, String str2) {
C14957gcv.e(list, "");
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
this.e = list;
this.a = str;
this.c = i;
this.d = str2;
}
public final String toString() {
List<TXk> list = this.e;
String str = this.a;
int i = this.c;
String str2 = this.d;
StringBuilder sb = new StringBuilder("PointToPayTransaction(pointToPayTransactionList=");
sb.append(list);
sb.append(", description=");
sb.append(str);
sb.append(", rewardPoints=");
sb.append(i);
sb.append(", termAndCon=");
sb.append(str2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((this.e.hashCode() * 31) + this.a.hashCode()) * 31) + Integer.hashCode(this.c)) * 31) + this.d.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof oMb)) {
return false;
}
oMb omb = (oMb) obj;
return C14957gcv.b(this.e, omb.e) && C14957gcv.b((Object) this.a, (Object) omb.a) && this.c == omb.c && C14957gcv.b((Object) this.d, (Object) omb.d);
}
}