30 lines
578 B
Java
30 lines
578 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class fTZ {
|
|
|
|
@SerializedName("refreshCacheOnResumeInMinutes")
|
|
public long a;
|
|
|
|
public fTZ(long j) {
|
|
this.a = j;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return obj != null && getClass() == obj.getClass() && this.a == ((fTZ) obj).a;
|
|
}
|
|
|
|
public /* synthetic */ fTZ() {
|
|
}
|
|
|
|
public int hashCode() {
|
|
long j = this.a;
|
|
return (int) (j ^ (j >>> 32));
|
|
}
|
|
}
|