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

69 lines
2.1 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* renamed from: o.bC, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C3636bC {
@SerializedName("merchant")
private final C3605bB a;
@SerializedName("walletList")
public final List<C3859bJ> b;
@SerializedName("editType")
private final String c;
@SerializedName("owner")
private final C3798bH e;
/* JADX WARN: Multi-variable type inference failed */
public C3636bC(String str, C3605bB c3605bB, C3798bH c3798bH, List<? extends C3859bJ> list) {
this.c = str;
this.a = c3605bB;
this.e = c3798bH;
this.b = list;
}
public final String toString() {
String str = this.c;
C3605bB c3605bB = this.a;
C3798bH c3798bH = this.e;
List<C3859bJ> list = this.b;
StringBuilder sb = new StringBuilder("MerchantWalletEditRequest(editType=");
sb.append(str);
sb.append(", merchant=");
sb.append(c3605bB);
sb.append(", owner=");
sb.append(c3798bH);
sb.append(", walletList=");
sb.append(list);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.c;
int hashCode = str == null ? 0 : str.hashCode();
C3605bB c3605bB = this.a;
int hashCode2 = c3605bB == null ? 0 : c3605bB.hashCode();
C3798bH c3798bH = this.e;
int hashCode3 = c3798bH == null ? 0 : c3798bH.hashCode();
List<C3859bJ> list = this.b;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (list != null ? list.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C3636bC)) {
return false;
}
C3636bC c3636bC = (C3636bC) obj;
return C14957gcv.b((Object) this.c, (Object) c3636bC.c) && C14957gcv.b(this.a, c3636bC.a) && C14957gcv.b(this.e, c3636bC.e) && C14957gcv.b(this.b, c3636bC.b);
}
}