93 lines
2.6 KiB
Java
93 lines
2.6 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class HK implements Parcelable {
|
|
public static final HBt CREATOR = new HBt(0);
|
|
public String a;
|
|
public String d;
|
|
public String e;
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public HK(String str, String str2, String str3) {
|
|
this.a = str;
|
|
this.e = str2;
|
|
this.d = str3;
|
|
}
|
|
|
|
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
|
|
public HK(Parcel parcel) {
|
|
this(parcel.readString(), parcel.readString(), 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.e);
|
|
parcel.writeString(this.d);
|
|
}
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class HBt implements Parcelable.Creator<HK> {
|
|
private HBt() {
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ HK createFromParcel(Parcel parcel) {
|
|
C14957gcv.e(parcel, "");
|
|
return new HK(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ HK[] newArray(int i) {
|
|
return new HK[i];
|
|
}
|
|
|
|
public /* synthetic */ HBt(byte b) {
|
|
this();
|
|
}
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.a;
|
|
String str2 = this.e;
|
|
String str3 = this.d;
|
|
StringBuilder sb = new StringBuilder("CcSofReviewReceiverDisplay(merchantUrlLogo=");
|
|
sb.append(str);
|
|
sb.append(", partnerName=");
|
|
sb.append(str2);
|
|
sb.append(", ref1=");
|
|
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.e;
|
|
int hashCode2 = str2 == null ? 0 : str2.hashCode();
|
|
String str3 = this.d;
|
|
return (((hashCode * 31) + hashCode2) * 31) + (str3 != null ? str3.hashCode() : 0);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof HK)) {
|
|
return false;
|
|
}
|
|
HK hk = (HK) obj;
|
|
return C14957gcv.b((Object) this.a, (Object) hk.a) && C14957gcv.b((Object) this.e, (Object) hk.e) && C14957gcv.b((Object) this.d, (Object) hk.d);
|
|
}
|
|
}
|