66 lines
1.8 KiB
Java
66 lines
1.8 KiB
Java
|
package o;
|
||
|
|
||
|
import com.google.gson.annotations.SerializedName;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class SVt {
|
||
|
|
||
|
@SerializedName("citizenship")
|
||
|
private String a;
|
||
|
|
||
|
@SerializedName("thaiLastName")
|
||
|
private String b;
|
||
|
|
||
|
@SerializedName("thaiFirstName")
|
||
|
private String c;
|
||
|
|
||
|
@SerializedName("citizenId")
|
||
|
private String d;
|
||
|
|
||
|
public SVt(String str, String str2, String str3, String str4) {
|
||
|
C14957gcv.e(str, "");
|
||
|
this.a = str;
|
||
|
this.c = str2;
|
||
|
this.b = str3;
|
||
|
this.d = str4;
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.a;
|
||
|
String str2 = this.c;
|
||
|
String str3 = this.b;
|
||
|
String str4 = this.d;
|
||
|
StringBuilder sb = new StringBuilder("SpouseInfo(citizenship=");
|
||
|
sb.append(str);
|
||
|
sb.append(", thaiFirstName=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", thaiLastName=");
|
||
|
sb.append(str3);
|
||
|
sb.append(", citizenId=");
|
||
|
sb.append(str4);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
int hashCode = this.a.hashCode();
|
||
|
String str = this.c;
|
||
|
int hashCode2 = str == null ? 0 : str.hashCode();
|
||
|
String str2 = this.b;
|
||
|
int hashCode3 = str2 == null ? 0 : str2.hashCode();
|
||
|
String str3 = this.d;
|
||
|
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str3 != null ? str3.hashCode() : 0);
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof SVt)) {
|
||
|
return false;
|
||
|
}
|
||
|
SVt sVt = (SVt) obj;
|
||
|
return C14957gcv.b((Object) this.a, (Object) sVt.a) && C14957gcv.b((Object) this.c, (Object) sVt.c) && C14957gcv.b((Object) this.b, (Object) sVt.b) && C14957gcv.b((Object) this.d, (Object) sVt.d);
|
||
|
}
|
||
|
}
|