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

99 lines
3.2 KiB
Java
Raw 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 TNJ {
@SerializedName("addressNumber")
public final String a;
@SerializedName("moo")
public final String b;
@SerializedName("province")
public final String c;
@SerializedName("district")
public final String d;
@SerializedName("postalCode")
public final String e;
@SerializedName("village")
public final String f;
@SerializedName("subdistrict")
public final String g;
@SerializedName("road")
public final String i;
@SerializedName("soi")
public final String j;
public final String toString() {
String str = this.a;
String str2 = this.b;
String str3 = this.f;
String str4 = this.j;
String str5 = this.i;
String str6 = this.g;
String str7 = this.d;
String str8 = this.c;
String str9 = this.e;
StringBuilder sb = new StringBuilder("StandAloneAddressEntity(addressNumber=");
sb.append(str);
sb.append(", moo=");
sb.append(str2);
sb.append(", village=");
sb.append(str3);
sb.append(", soi=");
sb.append(str4);
sb.append(", road=");
sb.append(str5);
sb.append(", subdistrict=");
sb.append(str6);
sb.append(", district=");
sb.append(str7);
sb.append(", province=");
sb.append(str8);
sb.append(", postalCode=");
sb.append(str9);
sb.append(")");
return sb.toString();
}
public final int hashCode() {
String str = this.a;
int hashCode = str == null ? 0 : str.hashCode();
String str2 = this.b;
int hashCode2 = str2 == null ? 0 : str2.hashCode();
String str3 = this.f;
int hashCode3 = str3 == null ? 0 : str3.hashCode();
String str4 = this.j;
int hashCode4 = str4 == null ? 0 : str4.hashCode();
String str5 = this.i;
int hashCode5 = str5 == null ? 0 : str5.hashCode();
String str6 = this.g;
int hashCode6 = str6 == null ? 0 : str6.hashCode();
String str7 = this.d;
int hashCode7 = str7 == null ? 0 : str7.hashCode();
String str8 = this.c;
int hashCode8 = str8 == null ? 0 : str8.hashCode();
String str9 = this.e;
return (((((((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + hashCode5) * 31) + hashCode6) * 31) + hashCode7) * 31) + hashCode8) * 31) + (str9 != null ? str9.hashCode() : 0);
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof TNJ)) {
return false;
}
TNJ tnj = (TNJ) obj;
return C14957gcv.b((Object) this.a, (Object) tnj.a) && C14957gcv.b((Object) this.b, (Object) tnj.b) && C14957gcv.b((Object) this.f, (Object) tnj.f) && C14957gcv.b((Object) this.j, (Object) tnj.j) && C14957gcv.b((Object) this.i, (Object) tnj.i) && C14957gcv.b((Object) this.g, (Object) tnj.g) && C14957gcv.b((Object) this.d, (Object) tnj.d) && C14957gcv.b((Object) this.c, (Object) tnj.c) && C14957gcv.b((Object) this.e, (Object) tnj.e);
}
}