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

65 lines
2.0 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import java.util.List;
/* loaded from: classes3.dex */
public final class jFB {
public final C8111dBf a;
public final List<TyG> b;
private final C11634eiz c;
public final FCD d;
public final String e;
public jFB(String str, C11634eiz c11634eiz, C8111dBf c8111dBf, List<TyG> list, FCD fcd) {
this.e = str;
this.c = c11634eiz;
this.a = c8111dBf;
this.b = list;
this.d = fcd;
}
public final String toString() {
String str = this.e;
C11634eiz c11634eiz = this.c;
C8111dBf c8111dBf = this.a;
List<TyG> list = this.b;
FCD fcd = this.d;
StringBuilder sb = new StringBuilder("MerchantMetaData(callbackUrl=");
sb.append(str);
sb.append(", extraData=");
sb.append(c11634eiz);
sb.append(", merchantInfo=");
sb.append(c8111dBf);
sb.append(", paymentInfo=");
sb.append(list);
sb.append(", pointRedemption=");
sb.append(fcd);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.e;
int hashCode = str == null ? 0 : str.hashCode();
C11634eiz c11634eiz = this.c;
int hashCode2 = c11634eiz == null ? 0 : c11634eiz.hashCode();
C8111dBf c8111dBf = this.a;
int hashCode3 = c8111dBf == null ? 0 : c8111dBf.hashCode();
List<TyG> list = this.b;
int hashCode4 = list == null ? 0 : list.hashCode();
FCD fcd = this.d;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (fcd != null ? fcd.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof jFB)) {
return false;
}
jFB jfb = (jFB) obj;
return C14957gcv.b((Object) this.e, (Object) jfb.e) && C14957gcv.b(this.c, jfb.c) && C14957gcv.b(this.a, jfb.a) && C14957gcv.b(this.b, jfb.b) && C14957gcv.b(this.d, jfb.d);
}
}