85 lines
2.4 KiB
Java
85 lines
2.4 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class QoX {
|
|
|
|
@SerializedName("accountNickname")
|
|
public String a;
|
|
|
|
@SerializedName("accountNo")
|
|
public String b;
|
|
|
|
@SerializedName("fastpayFlag")
|
|
public String c;
|
|
|
|
@SerializedName("limitStepSize")
|
|
public String d;
|
|
|
|
@SerializedName("limitAmount")
|
|
public String e;
|
|
|
|
@SerializedName("minAmount")
|
|
public String f;
|
|
|
|
@SerializedName("maxAmount")
|
|
public String j;
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof QoX)) {
|
|
return false;
|
|
}
|
|
QoX qoX = (QoX) obj;
|
|
String str = this.c;
|
|
if (str == null ? qoX.c != null : !str.equals(qoX.c)) {
|
|
return false;
|
|
}
|
|
String str2 = this.b;
|
|
if (str2 == null ? qoX.b != null : !str2.equals(qoX.b)) {
|
|
return false;
|
|
}
|
|
String str3 = this.a;
|
|
if (str3 == null ? qoX.a != null : !str3.equals(qoX.a)) {
|
|
return false;
|
|
}
|
|
String str4 = this.e;
|
|
if (str4 == null ? qoX.e != null : !str4.equals(qoX.e)) {
|
|
return false;
|
|
}
|
|
String str5 = this.f;
|
|
if (str5 == null ? qoX.f != null : !str5.equals(qoX.f)) {
|
|
return false;
|
|
}
|
|
String str6 = this.j;
|
|
if (str6 == null ? qoX.j != null : !str6.equals(qoX.j)) {
|
|
return false;
|
|
}
|
|
String str7 = this.d;
|
|
if (str7 != null) {
|
|
return str7.equals(qoX.d);
|
|
}
|
|
return qoX.d == null;
|
|
}
|
|
|
|
public int hashCode() {
|
|
String str = this.c;
|
|
int hashCode = str != null ? str.hashCode() : 0;
|
|
String str2 = this.b;
|
|
int hashCode2 = str2 != null ? str2.hashCode() : 0;
|
|
String str3 = this.a;
|
|
int hashCode3 = str3 != null ? str3.hashCode() : 0;
|
|
String str4 = this.e;
|
|
int hashCode4 = str4 != null ? str4.hashCode() : 0;
|
|
String str5 = this.f;
|
|
int hashCode5 = str5 != null ? str5.hashCode() : 0;
|
|
String str6 = this.j;
|
|
int hashCode6 = str6 != null ? str6.hashCode() : 0;
|
|
String str7 = this.d;
|
|
return (((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + (str7 != null ? str7.hashCode() : 0);
|
|
}
|
|
}
|