63 lines
1.5 KiB
Java
63 lines
1.5 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class LuG {
|
|
|
|
@SerializedName("provinceTH")
|
|
public String b;
|
|
|
|
@SerializedName("number")
|
|
public String c;
|
|
|
|
@SerializedName("provinceEN")
|
|
public String d;
|
|
|
|
public /* synthetic */ LuG(byte b) {
|
|
this("", "", "");
|
|
}
|
|
|
|
public LuG(String str, String str2, String str3) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
C14957gcv.e(str3, "");
|
|
this.c = str;
|
|
this.b = str2;
|
|
this.d = str3;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
String str2 = this.b;
|
|
String str3 = this.d;
|
|
StringBuilder sb = new StringBuilder("CarRegistration(number=");
|
|
sb.append(str);
|
|
sb.append(", provinceTH=");
|
|
sb.append(str2);
|
|
sb.append(", provinceEN=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (((this.c.hashCode() * 31) + this.b.hashCode()) * 31) + this.d.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof LuG)) {
|
|
return false;
|
|
}
|
|
LuG luG = (LuG) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) luG.c) && C14957gcv.b((Object) this.b, (Object) luG.b) && C14957gcv.b((Object) this.d, (Object) luG.d);
|
|
}
|
|
|
|
public LuG() {
|
|
this((byte) 0);
|
|
}
|
|
}
|