56 lines
1.4 KiB
Java
56 lines
1.4 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class NFa extends Pag {
|
|
|
|
@SerializedName("card")
|
|
public final IQF a;
|
|
|
|
@SerializedName("cardRefNo")
|
|
public final String c;
|
|
|
|
@SerializedName("wallet")
|
|
public final List<wZk> d;
|
|
|
|
public NFa(String str, IQF iqf, List<wZk> list) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(iqf, "");
|
|
C14957gcv.e(list, "");
|
|
this.c = str;
|
|
this.a = iqf;
|
|
this.d = list;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
IQF iqf = this.a;
|
|
List<wZk> list = this.d;
|
|
StringBuilder sb = new StringBuilder("PrepaidTravelWalletSummary(cardRefNo=");
|
|
sb.append(str);
|
|
sb.append(", card=");
|
|
sb.append(iqf);
|
|
sb.append(", wallet=");
|
|
sb.append(list);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((this.c.hashCode() * 31) + this.a.hashCode()) * 31) + this.d.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof NFa)) {
|
|
return false;
|
|
}
|
|
NFa nFa = (NFa) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) nFa.c) && C14957gcv.b(this.a, nFa.a) && C14957gcv.b(this.d, nFa.d);
|
|
}
|
|
}
|