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

76 lines
2.3 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class Wsw {
@SerializedName("remark")
public final String a;
@SerializedName("accountFromName")
public final String b;
@SerializedName("fee")
public final Double c;
@SerializedName("billerNotes")
public final List<Wwo> d;
@SerializedName("accountFromNo")
public final String e;
@SerializedName("tokenId")
public final String i;
public final String toString() {
String str = this.i;
String str2 = this.e;
String str3 = this.b;
Double d = this.c;
List<Wwo> list = this.d;
String str4 = this.a;
StringBuilder sb = new StringBuilder("IdpSharingTransferEntity(tokenId=");
sb.append(str);
sb.append(", accountFromNo=");
sb.append(str2);
sb.append(", accountFromName=");
sb.append(str3);
sb.append(", fee=");
sb.append(d);
sb.append(", billerNotes=");
sb.append(list);
sb.append(", remark=");
sb.append(str4);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.i;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.e;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.b;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
Double d = this.c;
int hashCode4 = d == null ? 0 : d.hashCode();
List<Wwo> list = this.d;
int hashCode5 = list == null ? 0 : list.hashCode();
String str4 = this.a;
return (((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + (str4 != null ? str4.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof Wsw)) {
return false;
}
Wsw wsw = (Wsw) obj;
return C14957gcv.b((Object) this.i, (Object) wsw.i) && C14957gcv.b((Object) this.e, (Object) wsw.e) && C14957gcv.b((Object) this.b, (Object) wsw.b) && C14957gcv.b(this.c, wsw.c) && C14957gcv.b(this.d, wsw.d) && C14957gcv.b((Object) this.a, (Object) wsw.a);
}
}