what-the-bank/sources/o/sNV.java

87 lines
2.5 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
/* loaded from: classes3.dex */
public final class sNV {
@SerializedName("hasPreviousPage")
public final Boolean a;
@SerializedName("currentPage")
public final Integer c;
@SerializedName("hasNextPage")
public final Boolean d;
@SerializedName("pageSize")
public final Integer e;
private sNV(Integer num, Integer num2, Boolean bool, Boolean bool2) {
this.c = num;
this.e = num2;
this.d = bool;
this.a = bool2;
}
/* JADX WARN: Illegal instructions before constructor call */
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct add '--show-bad-code' argument
*/
private /* synthetic */ sNV(byte r2) {
/*
r1 = this;
java.lang.Boolean r2 = java.lang.Boolean.FALSE
r0 = 0
java.lang.Integer r0 = java.lang.Integer.valueOf(r0)
r1.<init>(r0, r0, r2, r2)
return
*/
throw new UnsupportedOperationException("Method not decompiled: o.sNV.<init>(byte):void");
}
public final String toString() {
Integer num = this.c;
Integer num2 = this.e;
Boolean bool = this.d;
Boolean bool2 = this.a;
StringBuilder sb = new StringBuilder("ECouponTransactionPaginateEntity(currentPage=");
sb.append(num);
sb.append(", pageSize=");
sb.append(num2);
sb.append(", hasNextPage=");
sb.append(bool);
sb.append(", hasPreviousPage=");
sb.append(bool2);
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.d;
int hashCode3 = bool == null ? 0 : bool.hashCode();
Boolean bool2 = this.a;
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (bool2 != null ? bool2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof sNV)) {
return false;
}
sNV snv = (sNV) obj;
return C14957gcv.b(this.c, snv.c) && C14957gcv.b(this.e, snv.e) && C14957gcv.b(this.d, snv.d) && C14957gcv.b(this.a, snv.a);
}
public sNV() {
this((byte) 0);
}
}