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

59 lines
1.8 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package o;
/* loaded from: classes3.dex */
public final class PiE {
public final String a;
public final String b;
public final String c;
private final String d;
private final String e;
public PiE(String str, String str2, String str3, String str4, String str5) {
C14957gcv.e(str, "");
C14957gcv.e(str2, "");
C14957gcv.e(str3, "");
C14957gcv.e(str4, "");
C14957gcv.e(str5, "");
this.a = str;
this.c = str2;
this.b = str3;
this.d = str4;
this.e = str5;
}
public final String toString() {
String str = this.a;
String str2 = this.c;
String str3 = this.b;
String str4 = this.d;
String str5 = this.e;
StringBuilder sb = new StringBuilder("Country(countryCode=");
sb.append(str);
sb.append(", countryDescTh=");
sb.append(str2);
sb.append(", countryDescEn=");
sb.append(str3);
sb.append(", status=");
sb.append(str4);
sb.append(", lastUpdateDate=");
sb.append(str5);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
return (((((((this.a.hashCode() * 31) + this.c.hashCode()) * 31) + this.b.hashCode()) * 31) + this.d.hashCode()) * 31) + this.e.hashCode();
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof PiE)) {
return false;
}
PiE piE = (PiE) obj;
return C14957gcv.b((Object) this.a, (Object) piE.a) && C14957gcv.b((Object) this.c, (Object) piE.c) && C14957gcv.b((Object) this.b, (Object) piE.b) && C14957gcv.b((Object) this.d, (Object) piE.d) && C14957gcv.b((Object) this.e, (Object) piE.e);
}
}