101 lines
3.0 KiB
Java
101 lines
3.0 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class NC implements Parcelable {
|
|
public static final LWm CREATOR = new LWm(0);
|
|
public final String a;
|
|
public final String b;
|
|
public final String d;
|
|
public final NU e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public NC(String str, String str2, NU nu, String str3) {
|
|
this.a = str;
|
|
this.d = str2;
|
|
this.e = nu;
|
|
this.b = str3;
|
|
}
|
|
|
|
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
|
|
public NC(Parcel parcel) {
|
|
this(parcel.readString(), parcel.readString(), (NU) parcel.readParcelable(NU.class.getClassLoader()), parcel.readString());
|
|
C14957gcv.e(parcel, "");
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
C14957gcv.e(parcel, "");
|
|
parcel.writeString(this.a);
|
|
parcel.writeString(this.d);
|
|
parcel.writeParcelable(this.e, i);
|
|
parcel.writeString(this.b);
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class LWm implements Parcelable.Creator<NC> {
|
|
private LWm() {
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ NC createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new NC(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ NC[] newArray(int i) {
|
|
return new NC[i];
|
|
}
|
|
|
|
public /* synthetic */ LWm(byte b) {
|
|
this();
|
|
}
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.d;
|
|
NU nu = this.e;
|
|
String str3 = this.b;
|
|
StringBuilder sb = new StringBuilder("HmlOutcomeApproveDisplay(date=");
|
|
sb.append(str);
|
|
sb.append(", hourRemark=");
|
|
sb.append(str2);
|
|
sb.append(", offerDetails=");
|
|
sb.append(nu);
|
|
sb.append(", approvalBackground=");
|
|
sb.append(str3);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.a;
|
|
int hashCode = str == null ? 0 : str.hashCode();
|
|
String str2 = this.d;
|
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
|
NU nu = this.e;
|
|
int hashCode3 = nu == null ? 0 : nu.hashCode();
|
|
String str3 = this.b;
|
|
return (((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + (str3 != null ? str3.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof NC)) {
|
|
return false;
|
|
}
|
|
NC nc = (NC) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) nc.a) && C14957gcv.b((Object) this.d, (Object) nc.d) && C14957gcv.b(this.e, nc.e) && C14957gcv.b((Object) this.b, (Object) nc.b);
|
|
}
|
|
}
|