30 lines
701 B
Java
30 lines
701 B
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class Njg {
|
||
|
|
||
|
@SerializedName("refreshCacheOnResumeInMinutes")
|
||
|
public final long a;
|
||
|
|
||
|
public final String toString() {
|
||
|
long j = this.a;
|
||
|
StringBuilder sb = new StringBuilder("AppParamsEntity(refreshCacheOnResumeInMinutes=");
|
||
|
sb.append(j);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return Long.hashCode(this.a);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
return (obj instanceof Njg) && this.a == ((Njg) obj).a;
|
||
|
}
|
||
|
}
|