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

32 lines
696 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public class zWd {
@SerializedName("requireIssuerFlag")
public int b;
@SerializedName("requireBusinessFlag")
public int c;
@SerializedName("requireDocumentFlag")
public int e;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
zWd zwd = (zWd) obj;
return this.e == zwd.e && this.c == zwd.c && this.b == zwd.b;
}
public int hashCode() {
return (((this.e * 31) + this.b) * 31) + this.c;
}
}