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

52 lines
1.4 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class BzA extends C16562pOe {
@SerializedName("wallet")
public final List<SLx> b;
@SerializedName("cardRefNo")
public final String d;
@SerializedName("card")
public final C10816ePn e;
public final String toString() {
String str = this.d;
C10816ePn c10816ePn = this.e;
List<SLx> list = this.b;
StringBuilder sb = new StringBuilder("TravelWalletSummaryEntity(cardRefNo=");
sb.append(str);
sb.append(", card=");
sb.append(c10816ePn);
sb.append(", wallet=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.d;
int hashCode = str == null ? 0 : str.hashCode();
C10816ePn c10816ePn = this.e;
int hashCode2 = c10816ePn == null ? 0 : c10816ePn.hashCode();
List<SLx> list = this.b;
return (((hashCode * 31) + hashCode2) * 31) + (list != null ? list.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof BzA)) {
return false;
}
BzA bzA = (BzA) obj;
return C14957gcv.b((Object) this.d, (Object) bzA.d) && C14957gcv.b(this.e, bzA.e) && C14957gcv.b(this.b, bzA.b);
}
}