100 lines
3.1 KiB
Java
100 lines
3.1 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class NI implements Parcelable {
|
|
public static final Parcelable.Creator<NI> CREATOR = new LWm();
|
|
public final boolean a;
|
|
public final String b;
|
|
public final String c;
|
|
public final String d;
|
|
public final String e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public NI(String str, boolean z, String str2, String str3, String str4) {
|
|
this.c = str;
|
|
this.a = z;
|
|
this.e = str2;
|
|
this.b = str3;
|
|
this.d = str4;
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class LWm implements Parcelable.Creator<NI> {
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ NI createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new NI(parcel.readString(), parcel.readInt() != 0, parcel.readString(), parcel.readString(), parcel.readString());
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ NI[] newArray(int i) {
|
|
return new NI[i];
|
|
}
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeString(this.c);
|
|
parcel.writeInt(this.a ? 1 : 0);
|
|
parcel.writeString(this.e);
|
|
parcel.writeString(this.b);
|
|
parcel.writeString(this.d);
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.c;
|
|
boolean z = this.a;
|
|
String str2 = this.e;
|
|
String str3 = this.b;
|
|
String str4 = this.d;
|
|
StringBuilder sb = new StringBuilder("HmlOutcomeRejectDisplay(backgroundUrl=");
|
|
sb.append(str);
|
|
sb.append(", showHealthSection=");
|
|
sb.append(z);
|
|
sb.append(", image=");
|
|
sb.append(str2);
|
|
sb.append(", deeplink=");
|
|
sb.append(str3);
|
|
sb.append(", reapplyDateTime=");
|
|
sb.append(str4);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
public final int hashCode() {
|
|
String str = this.c;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
boolean z = this.a;
|
|
int i = z;
|
|
if (z != 0) {
|
|
i = 1;
|
|
}
|
|
String str2 = this.e;
|
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.b;
|
|
int hashCode3 = str3 == null ? 0 : str3.hashCode();
|
|
String str4 = this.d;
|
|
return (((((((hashCode * 31) + i) * 31) + hashCode2) * 31) + hashCode3) * 31) + (str4 != null ? str4.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof NI)) {
|
|
return false;
|
|
}
|
|
NI ni = (NI) obj;
|
|
return C14957gcv.b((Object) this.c, (Object) ni.c) && this.a == ni.a && C14957gcv.b((Object) this.e, (Object) ni.e) && C14957gcv.b((Object) this.b, (Object) ni.b) && C14957gcv.b((Object) this.d, (Object) ni.d);
|
|
}
|
|
}
|