47 lines
1.1 KiB
Java
47 lines
1.1 KiB
Java
package o;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class YAw {
|
|
|
|
@SerializedName("expiryDate")
|
|
private final String c;
|
|
|
|
@SerializedName("laserCode")
|
|
private final String d;
|
|
|
|
public YAw(String str, String str2) {
|
|
C14957gcv.e(str, "");
|
|
C14957gcv.e(str2, "");
|
|
this.c = str;
|
|
this.d = str2;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
String str2 = this.d;
|
|
StringBuilder sb = new StringBuilder("CitizenIdEntity(expiryDate=");
|
|
sb.append(str);
|
|
sb.append(", laserCode=");
|
|
sb.append(str2);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (this.c.hashCode() * 31) + this.d.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof YAw)) {
|
|
return false;
|
|
}
|
|
YAw yAw = (YAw) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) yAw.c) && C14957gcv.b((Object) this.d, (Object) yAw.d);
|
|
}
|
|
}
|