48 lines
1.3 KiB
Java
48 lines
1.3 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* renamed from: o.kZS, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public class C16025kZS {
|
|
|
|
@SerializedName("cardId")
|
|
public String b;
|
|
|
|
@SerializedName("scheduleFlag")
|
|
public String c;
|
|
|
|
@SerializedName("eligibilityFlag")
|
|
public String e;
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
C16025kZS c16025kZS = (C16025kZS) obj;
|
|
String str = this.e;
|
|
if (str == null ? c16025kZS.e != null : !str.equals(c16025kZS.e)) {
|
|
return false;
|
|
}
|
|
String str2 = this.b;
|
|
if (str2 == null ? c16025kZS.b != null : !str2.equals(c16025kZS.b)) {
|
|
return false;
|
|
}
|
|
String str3 = this.c;
|
|
String str4 = c16025kZS.c;
|
|
return str3 != null ? str3.equals(str4) : str4 == null;
|
|
}
|
|
|
|
public int hashCode() {
|
|
String str = this.e;
|
|
int hashCode = str != null ? str.hashCode() : 0;
|
|
String str2 = this.b;
|
|
int hashCode2 = str2 != null ? str2.hashCode() : 0;
|
|
String str3 = this.c;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (str3 != null ? str3.hashCode() : 0);
|
|
}
|
|
}
|