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

61 lines
1.5 KiB
Java
Raw 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 NHc extends Pag {
@SerializedName("endDate")
public String a;
@SerializedName("startDate")
public String b;
@SerializedName("dayOfMonth")
public int c;
@SerializedName("scheduleType")
public String d;
public NHc(String str, int i, String str2, String str3) {
this.d = str;
this.c = i;
this.b = str2;
this.a = str3;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
NHc nHc = (NHc) obj;
if (this.c != nHc.c) {
return false;
}
String str = this.d;
if (str == null ? nHc.d != null : !str.equals(nHc.d)) {
return false;
}
String str2 = this.b;
if (str2 == null ? nHc.b != null : !str2.equals(nHc.b)) {
return false;
}
String str3 = this.a;
String str4 = nHc.a;
return str3 != null ? str3.equals(str4) : str4 == null;
}
public int hashCode() {
String str = this.d;
int hashCode = str != null ? str.hashCode() : 0;
int i = this.c;
String str2 = this.b;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
String str3 = this.a;
return (((((hashCode * 31) + i) * 31) + hashCode2) * 31) + (str3 != null ? str3.hashCode() : 0);
}
}