32 lines
696 B
Java
32 lines
696 B
Java
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;
|
|
}
|
|
}
|