63 lines
1.8 KiB
Java
63 lines
1.8 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
import java.util.List;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class GAQ {
|
||
|
|
||
|
@SerializedName("transactions")
|
||
|
public final List<C5340brG> a;
|
||
|
|
||
|
@SerializedName("remark")
|
||
|
public final String b;
|
||
|
|
||
|
@SerializedName("pagingOffset")
|
||
|
public final Integer c;
|
||
|
|
||
|
@SerializedName("endOfListFlag")
|
||
|
public final String d;
|
||
|
|
||
|
@SerializedName("totalCount")
|
||
|
public final int e;
|
||
|
|
||
|
public final String toString() {
|
||
|
int i = this.e;
|
||
|
String str = this.d;
|
||
|
String str2 = this.b;
|
||
|
Integer num = this.c;
|
||
|
List<C5340brG> list = this.a;
|
||
|
StringBuilder sb = new StringBuilder("TransferHistoryEntity(totalCount=");
|
||
|
sb.append(i);
|
||
|
sb.append(", endOfListFlag=");
|
||
|
sb.append(str);
|
||
|
sb.append(", remark=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", pagingOffset=");
|
||
|
sb.append(num);
|
||
|
sb.append(", transactions=");
|
||
|
sb.append(list);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
int hashCode = Integer.hashCode(this.e);
|
||
|
int hashCode2 = this.d.hashCode();
|
||
|
int hashCode3 = this.b.hashCode();
|
||
|
Integer num = this.c;
|
||
|
return (((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (num == null ? 0 : num.hashCode())) * 31) + this.a.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof GAQ)) {
|
||
|
return false;
|
||
|
}
|
||
|
GAQ gaq = (GAQ) obj;
|
||
|
return this.e == gaq.e && C14957gcv.b((Object) this.d, (Object) gaq.d) && C14957gcv.b((Object) this.b, (Object) gaq.b) && C14957gcv.b(this.c, gaq.c) && C14957gcv.b(this.a, gaq.a);
|
||
|
}
|
||
|
}
|