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

55 lines
1.5 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* renamed from: o.FBw, reason: case insensitive filesystem */
/* loaded from: classes3.dex */
public class C0362FBw extends C16562pOe {
@SerializedName("dayOfMonth")
public int a;
@SerializedName("startDate")
public String b;
@SerializedName("endDate")
public String c;
@SerializedName("scheduleType")
public String e;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
C0362FBw c0362FBw = (C0362FBw) obj;
if (this.a != c0362FBw.a) {
return false;
}
String str = this.e;
if (str == null ? c0362FBw.e != null : !str.equals(c0362FBw.e)) {
return false;
}
String str2 = this.b;
if (str2 == null ? c0362FBw.b != null : !str2.equals(c0362FBw.b)) {
return false;
}
String str3 = this.c;
String str4 = c0362FBw.c;
return str3 != null ? str3.equals(str4) : str4 == null;
}
public int hashCode() {
String str = this.e;
int hashCode = str != null ? str.hashCode() : 0;
int i = this.a;
String str2 = this.b;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
String str3 = this.c;
return (((((hashCode * 31) + i) * 31) + hashCode2) * 31) + (str3 != null ? str3.hashCode() : 0);
}
}