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

62 lines
1.8 KiB
Java

package o;
import com.airbnb.deeplinkdispatch.UrlTreeKt;
import java.util.List;
/* loaded from: classes3.dex */
public final class FT extends EQ {
public boolean a;
public List<FV> b;
public List<FV> c;
public String d;
public List<FV> f;
public String h;
public FT(String str, List<FV> list, List<FV> list2, List<FV> list3, String str2, boolean z) {
this.d = str;
this.c = list;
this.f = list2;
this.b = list3;
this.h = str2;
this.a = z;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
FT ft = (FT) obj;
if (this.a == ft.a && this.d.equals(ft.d) && this.c.equals(ft.c) && this.f.equals(ft.f) && this.b.equals(ft.b)) {
return this.h.equals(ft.h);
}
return false;
}
public final int hashCode() {
int hashCode = this.d.hashCode();
int hashCode2 = this.c.hashCode();
int hashCode3 = this.f.hashCode();
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + this.b.hashCode()) * 31) + this.h.hashCode()) * 31) + (this.a ? 1 : 0);
}
public final String toString() {
StringBuilder sb = new StringBuilder("BulkTransferInputDisplay{header='");
sb.append(this.d);
sb.append("', ownRecipients=");
sb.append(this.c);
sb.append(", scbRecipients=");
sb.append(this.f);
sb.append(", otherRecipients=");
sb.append(this.b);
sb.append(", totalAmount='");
sb.append(this.h);
sb.append("', hasRecipients=");
sb.append(this.a);
sb.append(UrlTreeKt.componentParamSuffixChar);
return sb.toString();
}
}