package o; import android.os.Parcel; import android.os.Parcelable; /* loaded from: classes3.dex */ public class WU implements Parcelable { public static final Parcelable.Creator CREATOR = new Parcelable.Creator() { // from class: o.WU.5 @Override // android.os.Parcelable.Creator public final /* synthetic */ WU createFromParcel(Parcel parcel) { return new WU(parcel, (byte) 0); } @Override // android.os.Parcelable.Creator public final /* bridge */ /* synthetic */ WU[] newArray(int i) { return new WU[i]; } }; public String a; public String e; @Override // android.os.Parcelable public int describeContents() { return 0; } public WU(String str, String str2) { this.a = str; this.e = str2; } private WU(Parcel parcel) { this.a = parcel.readString(); this.e = parcel.readString(); } public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } WU wu = (WU) obj; String str = this.a; if (str == null ? wu.a == null : str.equals(wu.a)) { return this.e.equals(wu.e); } return false; } public int hashCode() { String str = this.a; return ((str != null ? str.hashCode() : 0) * 31) + this.e.hashCode(); } public String toString() { StringBuilder sb = new StringBuilder("GiftStatusDisplay{description='"); sb.append(this.a); sb.append("', type='"); sb.append(this.e); sb.append("'}"); return sb.toString(); } @Override // android.os.Parcelable public void writeToParcel(Parcel parcel, int i) { parcel.writeString(this.a); parcel.writeString(this.e); } /* synthetic */ WU(Parcel parcel, byte b) { this(parcel); } }