45 lines
1.1 KiB
Java
45 lines
1.1 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* renamed from: o.bs, reason: case insensitive filesystem */
|
|
/* loaded from: classes3.dex */
|
|
public final class C5386bs {
|
|
|
|
@SerializedName("pagingNumber")
|
|
private final int c;
|
|
|
|
@SerializedName("pagingLimit")
|
|
private final int e = 10;
|
|
|
|
public C5386bs(int i) {
|
|
this.c = i;
|
|
}
|
|
|
|
public final String toString() {
|
|
int i = this.c;
|
|
int i2 = this.e;
|
|
StringBuilder sb = new StringBuilder("EkycStatusInquiryRequest(pagingNumber=");
|
|
sb.append(i);
|
|
sb.append(", pagingLimit=");
|
|
sb.append(i2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (Integer.hashCode(this.c) * 31) + Integer.hashCode(this.e);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof C5386bs)) {
|
|
return false;
|
|
}
|
|
C5386bs c5386bs = (C5386bs) obj;
|
|
return this.c == c5386bs.c && this.e == c5386bs.e;
|
|
}
|
|
}
|