103 lines
3.0 KiB
Java
103 lines
3.0 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class SY extends EQ implements Parcelable {
|
||
|
public static final Parcelable.Creator<SY> CREATOR = new Parcelable.Creator<SY>() { // from class: o.SY.3
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ SY createFromParcel(Parcel parcel) {
|
||
|
return new SY(parcel);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ SY[] newArray(int i) {
|
||
|
return new SY[i];
|
||
|
}
|
||
|
};
|
||
|
public String k;
|
||
|
public String l;
|
||
|
public String m;
|
||
|
|
||
|
/* renamed from: o, reason: collision with root package name */
|
||
|
public String f8365o;
|
||
|
|
||
|
@Override // o.EQ, android.os.Parcelable
|
||
|
public int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
@Override // o.EQ, android.os.Parcelable
|
||
|
public void writeToParcel(Parcel parcel, int i) {
|
||
|
parcel.writeString(this.l);
|
||
|
parcel.writeString(this.k);
|
||
|
parcel.writeString(this.m);
|
||
|
parcel.writeString(this.f8365o);
|
||
|
}
|
||
|
|
||
|
public SY() {
|
||
|
}
|
||
|
|
||
|
public SY(Parcel parcel) {
|
||
|
this.l = parcel.readString();
|
||
|
this.k = parcel.readString();
|
||
|
this.m = parcel.readString();
|
||
|
this.f8365o = parcel.readString();
|
||
|
}
|
||
|
|
||
|
public SY(String str, String str2) {
|
||
|
this.k = str;
|
||
|
this.m = str2;
|
||
|
}
|
||
|
|
||
|
public boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (obj == null || getClass() != obj.getClass()) {
|
||
|
return false;
|
||
|
}
|
||
|
SY sy = (SY) obj;
|
||
|
String str = this.l;
|
||
|
if (str == null ? sy.l != null : !str.equals(sy.l)) {
|
||
|
return false;
|
||
|
}
|
||
|
String str2 = this.k;
|
||
|
if (str2 == null ? sy.k != null : !str2.equals(sy.k)) {
|
||
|
return false;
|
||
|
}
|
||
|
String str3 = this.f8365o;
|
||
|
if (str3 == null ? sy.f8365o != null : !str3.equals(sy.f8365o)) {
|
||
|
return false;
|
||
|
}
|
||
|
String str4 = this.m;
|
||
|
String str5 = sy.m;
|
||
|
return str4 != null ? str4.equals(str5) : str5 == null;
|
||
|
}
|
||
|
|
||
|
public int hashCode() {
|
||
|
String str = this.l;
|
||
|
int hashCode = str != null ? str.hashCode() : 0;
|
||
|
String str2 = this.k;
|
||
|
int hashCode2 = str2 != null ? str2.hashCode() : 0;
|
||
|
String str3 = this.m;
|
||
|
int hashCode3 = str3 != null ? str3.hashCode() : 0;
|
||
|
String str4 = this.f8365o;
|
||
|
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str4 != null ? str4.hashCode() : 0);
|
||
|
}
|
||
|
|
||
|
public String toString() {
|
||
|
StringBuilder sb = new StringBuilder("NationalIdDisplay{nationalIdImageUri='");
|
||
|
sb.append(this.l);
|
||
|
sb.append("', laserCode='");
|
||
|
sb.append(this.k);
|
||
|
sb.append("', issueDate='");
|
||
|
sb.append(this.m);
|
||
|
sb.append("', expiryDate='");
|
||
|
sb.append(this.f8365o);
|
||
|
sb.append("'}");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
}
|