58 lines
1.6 KiB
Java
58 lines
1.6 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class wVN {
|
|
|
|
@SerializedName("txnDateTime")
|
|
public String a;
|
|
|
|
@SerializedName("txnNote")
|
|
public String b;
|
|
|
|
@SerializedName("txnTitle")
|
|
public String c;
|
|
|
|
@SerializedName("refId")
|
|
public String d;
|
|
|
|
@SerializedName("txnType")
|
|
public String e;
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.b;
|
|
String str3 = this.d;
|
|
String str4 = this.c;
|
|
String str5 = this.e;
|
|
StringBuilder sb = new StringBuilder("ThirdPartyHeaderEntity(txnDateTime=");
|
|
sb.append(str);
|
|
sb.append(", txnNote=");
|
|
sb.append(str2);
|
|
sb.append(", txnRefId=");
|
|
sb.append(str3);
|
|
sb.append(", txnTitle=");
|
|
sb.append(str4);
|
|
sb.append(", txnType=");
|
|
sb.append(str5);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((((((this.a.hashCode() * 31) + this.b.hashCode()) * 31) + this.d.hashCode()) * 31) + this.c.hashCode()) * 31) + this.e.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof wVN)) {
|
|
return false;
|
|
}
|
|
wVN wvn = (wVN) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) wvn.a) && C14957gcv.b((Object) this.b, (Object) wvn.b) && C14957gcv.b((Object) this.d, (Object) wvn.d) && C14957gcv.b((Object) this.c, (Object) wvn.c) && C14957gcv.b((Object) this.e, (Object) wvn.e);
|
|
}
|
|
}
|