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

66 lines
1.7 KiB
Java

package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes.dex */
public final class hoG {
@SerializedName("isDelayOn")
public Boolean c;
@SerializedName("errorDateTime")
public Long d;
@SerializedName("errorCount")
public Integer e;
private hoG(Boolean bool, Integer num) {
this.c = bool;
this.e = num;
this.d = null;
}
public /* synthetic */ hoG(Boolean bool, Integer num, int i) {
this((i & 1) != 0 ? Boolean.FALSE : bool, (i & 2) != 0 ? 0 : num);
}
public final String toString() {
Boolean bool = this.c;
Integer num = this.e;
Long l = this.d;
StringBuilder sb = new StringBuilder("DelayLoading(isDelayOn=");
sb.append(bool);
sb.append(", errorCount=");
sb.append(num);
sb.append(", errorDateTime=");
sb.append(l);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
Boolean bool = this.c;
int hashCode = bool == null ? 0 : bool.hashCode();
Integer num = this.e;
int hashCode2 = num == null ? 0 : num.hashCode();
Long l = this.d;
return (((hashCode * 31) + hashCode2) * 31) + (l != null ? l.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof hoG)) {
return false;
}
hoG hog = (hoG) obj;
return C14957gcv.b(this.c, hog.c) && C14957gcv.b(this.e, hog.e) && C14957gcv.b(this.d, hog.d);
}
/* JADX WARN: Multi-variable type inference failed */
public hoG() {
this(null, 0 == true ? 1 : 0, 7);
}
}