79 lines
2.3 KiB
Java
79 lines
2.3 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class jNX {
|
|
|
|
@SerializedName("accountFromNo")
|
|
private final String a;
|
|
|
|
@SerializedName("agentName")
|
|
private final String b;
|
|
|
|
@SerializedName("postingType")
|
|
private final String c;
|
|
|
|
@SerializedName("amount")
|
|
private final String d;
|
|
|
|
@SerializedName("agentCode")
|
|
private final String e;
|
|
|
|
@SerializedName("transactionType")
|
|
private final String f;
|
|
|
|
public jNX(String str, String str2, String str3, String str4, String str5, String str6) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
C14957gcv.e(str4, "");
|
|
C14957gcv.e(str5, "");
|
|
C14957gcv.e(str6, "");
|
|
this.a = str;
|
|
this.e = str2;
|
|
this.b = str3;
|
|
this.f = str4;
|
|
this.d = str5;
|
|
this.c = str6;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.e;
|
|
String str3 = this.b;
|
|
String str4 = this.f;
|
|
String str5 = this.d;
|
|
String str6 = this.c;
|
|
StringBuilder sb = new StringBuilder("AgentValidationRequest(accountFromNo=");
|
|
sb.append(str);
|
|
sb.append(", agentCode=");
|
|
sb.append(str2);
|
|
sb.append(", agentName=");
|
|
sb.append(str3);
|
|
sb.append(", transactionType=");
|
|
sb.append(str4);
|
|
sb.append(", amount=");
|
|
sb.append(str5);
|
|
sb.append(", postingType=");
|
|
sb.append(str6);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((((((((this.a.hashCode() * 31) + this.e.hashCode()) * 31) + this.b.hashCode()) * 31) + this.f.hashCode()) * 31) + this.d.hashCode()) * 31) + this.c.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof jNX)) {
|
|
return false;
|
|
}
|
|
jNX jnx = (jNX) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) jnx.a) && C14957gcv.b((Object) this.e, (Object) jnx.e) && C14957gcv.b((Object) this.b, (Object) jnx.b) && C14957gcv.b((Object) this.f, (Object) jnx.f) && C14957gcv.b((Object) this.d, (Object) jnx.d) && C14957gcv.b((Object) this.c, (Object) jnx.c);
|
|
}
|
|
}
|