39 lines
887 B
Java
39 lines
887 B
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class Lsy {
|
|
|
|
@SerializedName("pagingLimit")
|
|
public int a;
|
|
|
|
@SerializedName("totalMatches")
|
|
public int d;
|
|
|
|
@SerializedName("scrollId")
|
|
public String e;
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
Lsy lsy = (Lsy) obj;
|
|
if (this.a != lsy.a || this.d != lsy.d) {
|
|
return false;
|
|
}
|
|
String str = this.e;
|
|
String str2 = lsy.e;
|
|
return str != null ? str.equals(str2) : str2 == null;
|
|
}
|
|
|
|
public int hashCode() {
|
|
int i = this.a;
|
|
String str = this.e;
|
|
return (((i * 31) + (str != null ? str.hashCode() : 0)) * 31) + this.d;
|
|
}
|
|
}
|