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

61 lines
1.6 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/* loaded from: classes3.dex */
public final class hpX {
@SerializedName("tcAcceptRequired")
public final int b;
@SerializedName("purposeCheckList")
public final List<PGd> c;
@SerializedName("countryList")
public final List<C13763fgU> e;
private hpX(int i, List<C13763fgU> list, List<PGd> list2) {
this.b = i;
this.e = list;
this.c = list2;
}
public static /* synthetic */ hpX b(hpX hpx, List list) {
return new hpX(hpx.b, list, hpx.c);
}
public final String toString() {
int i = this.b;
List<C13763fgU> list = this.e;
List<PGd> list2 = this.c;
StringBuilder sb = new StringBuilder("RemittanceLandingResponseEntity(tcAcceptRequired=");
sb.append(i);
sb.append(", countryList=");
sb.append(list);
sb.append(", purposeCheckList=");
sb.append(list2);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
int hashCode = Integer.hashCode(this.b);
List<C13763fgU> list = this.e;
int hashCode2 = list == null ? 0 : list.hashCode();
List<PGd> list2 = this.c;
return (((hashCode * 31) + hashCode2) * 31) + (list2 != null ? list2.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof hpX)) {
return false;
}
hpX hpx = (hpX) obj;
return this.b == hpx.b && C14957gcv.b(this.e, hpx.e) && C14957gcv.b(this.c, hpx.c);
}
}