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

47 lines
1.2 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public class DYB {
@SerializedName("startDate")
public String b;
@SerializedName("currentDateTime")
public String d;
@SerializedName("endDate")
public String e;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
DYB dyb = (DYB) obj;
String str = this.d;
if (str == null ? dyb.d != null : !str.equals(dyb.d)) {
return false;
}
String str2 = this.b;
if (str2 == null ? dyb.b != null : !str2.equals(dyb.b)) {
return false;
}
String str3 = this.e;
String str4 = dyb.e;
return str3 != null ? str3.equals(str4) : str4 == null;
}
public int hashCode() {
String str = this.d;
int hashCode = str != null ? str.hashCode() : 0;
String str2 = this.b;
int hashCode2 = str2 != null ? str2.hashCode() : 0;
String str3 = this.e;
return (((hashCode * 31) + hashCode2) * 31) + (str3 != null ? str3.hashCode() : 0);
}
}