66 lines
1.9 KiB
Java
66 lines
1.9 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class LS extends EQ {
|
||
|
public static final Parcelable.Creator<LS> CREATOR = new LWm();
|
||
|
public final String b;
|
||
|
public final String c;
|
||
|
|
||
|
public LS(String str, String str2) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(str2, "");
|
||
|
this.b = str;
|
||
|
this.c = str2;
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class LWm implements Parcelable.Creator<LS> {
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ LS createFromParcel(Parcel parcel) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
return new LS(parcel.readString(), parcel.readString());
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ LS[] newArray(int i) {
|
||
|
return new LS[i];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override // o.EQ, android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
parcel.writeString(this.b);
|
||
|
parcel.writeString(this.c);
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.b;
|
||
|
String str2 = this.c;
|
||
|
StringBuilder sb = new StringBuilder("EasycashSalesheetDisplay(productType=");
|
||
|
sb.append(str);
|
||
|
sb.append(", name=");
|
||
|
sb.append(str2);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (this.b.hashCode() * 31) + this.c.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof LS)) {
|
||
|
return false;
|
||
|
}
|
||
|
LS ls = (LS) obj;
|
||
|
return C14957gcv.b((Object) this.b, (Object) ls.b) && C14957gcv.b((Object) this.c, (Object) ls.c);
|
||
|
}
|
||
|
}
|