what-the-bank/sources/o/WU.java

76 lines
2.0 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package o;
import android.os.Parcel;
import android.os.Parcelable;
/* loaded from: classes3.dex */
public class WU implements Parcelable {
public static final Parcelable.Creator<WU> CREATOR = new Parcelable.Creator<WU>() { // 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);
}
}