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

77 lines
2.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;
/* renamed from: o.fP, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public final class C13046fP {
@SerializedName("annotation")
private final C15387gp<String> a;
@SerializedName("accountTo")
private final String b;
@SerializedName("transferType")
private final String c;
@SerializedName("accountFrom")
private final String d;
@SerializedName("subdeposit")
private final List<C12979fN> e;
public C13046fP(String str, String str2, String str3, List<C12979fN> list, C15387gp<String> c15387gp) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
C14957gcv.e(list, "");
this.c = str;
this.d = str2;
this.b = str3;
this.e = list;
this.a = c15387gp;
}
public final String toString() {
String str = this.c;
String str2 = this.d;
String str3 = this.b;
List<C12979fN> list = this.e;
C15387gp<String> c15387gp = this.a;
StringBuilder sb = new StringBuilder("FixedTransferVerificationRequest(transferType=");
sb.append(str);
sb.append(", accountFrom=");
sb.append(str2);
sb.append(", accountTo=");
sb.append(str3);
sb.append(", subdeposit=");
sb.append(list);
sb.append(", annotation=");
sb.append(c15387gp);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = this.c.hashCode();
int hashCode2 = this.d.hashCode();
int hashCode3 = this.b.hashCode();
int hashCode4 = this.e.hashCode();
C15387gp<String> c15387gp = this.a;
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (c15387gp == null ? 0 : c15387gp.hashCode());
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof C13046fP)) {
return false;
}
C13046fP c13046fP = (C13046fP) obj;
return C14957gcv.b((Object) this.c, (Object) c13046fP.c) && C14957gcv.b((Object) this.d, (Object) c13046fP.d) && C14957gcv.b((Object) this.b, (Object) c13046fP.b) && C14957gcv.b(this.e, c13046fP.e) && C14957gcv.b(this.a, c13046fP.a);
}
}