60 lines
1.5 KiB
Java
60 lines
1.5 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public final class BgM {
|
||
|
|
||
|
@SerializedName("isUseDelay")
|
||
|
public Boolean a;
|
||
|
|
||
|
@SerializedName("maxDelay")
|
||
|
public Integer c;
|
||
|
|
||
|
@SerializedName("resetDuration")
|
||
|
public Integer e;
|
||
|
|
||
|
public BgM(Integer num, Integer num2, Boolean bool) {
|
||
|
this.c = num;
|
||
|
this.e = num2;
|
||
|
this.a = bool;
|
||
|
}
|
||
|
|
||
|
public /* synthetic */ BgM() {
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
Integer num = this.c;
|
||
|
Integer num2 = this.e;
|
||
|
Boolean bool = this.a;
|
||
|
StringBuilder sb = new StringBuilder("AppConfigImproveLoading(maxDelay=");
|
||
|
sb.append(num);
|
||
|
sb.append(", resetDuration=");
|
||
|
sb.append(num2);
|
||
|
sb.append(", isUseDelay=");
|
||
|
sb.append(bool);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
Integer num = this.c;
|
||
|
int hashCode = num == null ? 0 : num.hashCode();
|
||
|
Integer num2 = this.e;
|
||
|
int hashCode2 = num2 == null ? 0 : num2.hashCode();
|
||
|
Boolean bool = this.a;
|
||
|
return (((hashCode * 31) + hashCode2) * 31) + (bool != null ? bool.hashCode() : 0);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof BgM)) {
|
||
|
return false;
|
||
|
}
|
||
|
BgM bgM = (BgM) obj;
|
||
|
return C14957gcv.b(this.c, bgM.c) && C14957gcv.b(this.e, bgM.e) && C14957gcv.b(this.a, bgM.a);
|
||
|
}
|
||
|
}
|