143 lines
4.2 KiB
Java
143 lines
4.2 KiB
Java
package o;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import com.airbnb.deeplinkdispatch.UrlTreeKt;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class JP implements Parcelable {
|
|
public static final Parcelable.Creator<JP> CREATOR = new Parcelable.Creator<JP>() { // from class: o.JP.5
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* synthetic */ JP createFromParcel(Parcel parcel) {
|
|
return new JP(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public final /* bridge */ /* synthetic */ JP[] newArray(int i) {
|
|
return new JP[i];
|
|
}
|
|
};
|
|
public String a;
|
|
public boolean b;
|
|
public String c;
|
|
public boolean d;
|
|
public String e;
|
|
public String f;
|
|
private String h;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class HBt {
|
|
String a;
|
|
public boolean b;
|
|
String c;
|
|
public String d;
|
|
boolean e;
|
|
public String f;
|
|
public String g;
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
private JP(HBt hBt) {
|
|
this.f = hBt.f;
|
|
this.e = hBt.d;
|
|
this.h = hBt.g;
|
|
this.b = hBt.b;
|
|
this.d = hBt.e;
|
|
this.c = hBt.c;
|
|
this.a = hBt.a;
|
|
}
|
|
|
|
protected JP(Parcel parcel) {
|
|
this.f = parcel.readString();
|
|
this.e = parcel.readString();
|
|
this.h = parcel.readString();
|
|
this.b = parcel.readByte() != 0;
|
|
this.d = parcel.readByte() != 0;
|
|
this.c = parcel.readString();
|
|
this.a = parcel.readString();
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public final void writeToParcel(Parcel parcel, int i) {
|
|
parcel.writeString(this.f);
|
|
parcel.writeString(this.e);
|
|
parcel.writeString(this.h);
|
|
parcel.writeByte(this.b ? (byte) 1 : (byte) 0);
|
|
parcel.writeByte(this.d ? (byte) 1 : (byte) 0);
|
|
parcel.writeString(this.c);
|
|
parcel.writeString(this.a);
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
JP jp = (JP) obj;
|
|
if (this.b != jp.b || this.d != jp.d) {
|
|
return false;
|
|
}
|
|
String str = this.c;
|
|
if (str == null ? jp.c != null : !str.equals(jp.c)) {
|
|
return false;
|
|
}
|
|
String str2 = this.a;
|
|
if (str2 == null ? jp.a != null : !str2.equals(jp.a)) {
|
|
return false;
|
|
}
|
|
String str3 = this.f;
|
|
if (str3 == null ? jp.f != null : !str3.equals(jp.f)) {
|
|
return false;
|
|
}
|
|
String str4 = this.e;
|
|
if (str4 == null ? jp.e != null : !str4.equals(jp.e)) {
|
|
return false;
|
|
}
|
|
String str5 = this.h;
|
|
String str6 = jp.h;
|
|
return str5 != null ? str5.equals(str6) : str6 == null;
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.f;
|
|
int hashCode = str != null ? str.hashCode() : 0;
|
|
String str2 = this.e;
|
|
int hashCode2 = str2 != null ? str2.hashCode() : 0;
|
|
String str3 = this.c;
|
|
int hashCode3 = str3 != null ? str3.hashCode() : 0;
|
|
String str4 = this.a;
|
|
int hashCode4 = str4 != null ? str4.hashCode() : 0;
|
|
String str5 = this.h;
|
|
return (((((((((((hashCode * 31) + hashCode2) * 31) + hashCode3) * 31) + hashCode4) * 31) + (str5 != null ? str5.hashCode() : 0)) * 31) + (this.b ? 1 : 0)) * 31) + (this.d ? 1 : 0);
|
|
}
|
|
|
|
public final String toString() {
|
|
StringBuilder sb = new StringBuilder("ConsentInfoDisplay{tag='");
|
|
sb.append(this.f);
|
|
sb.append("', info='");
|
|
sb.append(this.e);
|
|
sb.append("', title='");
|
|
sb.append(this.h);
|
|
sb.append("', hasButtons=");
|
|
sb.append(this.b);
|
|
sb.append(", hasCustomButtons=");
|
|
sb.append(this.d);
|
|
sb.append(", positiveButtonText=");
|
|
sb.append(this.c);
|
|
sb.append(", negativeButtonText=");
|
|
sb.append(this.a);
|
|
sb.append(UrlTreeKt.componentParamSuffixChar);
|
|
return sb.toString();
|
|
}
|
|
|
|
public /* synthetic */ JP(HBt hBt, byte b) {
|
|
this(hBt);
|
|
}
|
|
}
|