82 lines
2.4 KiB
Java
82 lines
2.4 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class wEZ implements Parcelable {
|
||
|
public static final Parcelable.Creator<wEZ> CREATOR = new RVV();
|
||
|
public final String a;
|
||
|
public final String b;
|
||
|
public final String d;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public wEZ(String str, String str2, String str3) {
|
||
|
C14957gcv.e(str, "");
|
||
|
C14957gcv.e(str2, "");
|
||
|
C14957gcv.e(str3, "");
|
||
|
this.d = str;
|
||
|
this.b = str2;
|
||
|
this.a = str3;
|
||
|
}
|
||
|
|
||
|
public /* synthetic */ wEZ(String str, String str2) {
|
||
|
this(str, str2, "");
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class RVV implements Parcelable.Creator<wEZ> {
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ wEZ createFromParcel(Parcel parcel) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
return new wEZ(parcel.readString(), parcel.readString(), parcel.readString());
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ wEZ[] newArray(int i) {
|
||
|
return new wEZ[i];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
parcel.writeString(this.d);
|
||
|
parcel.writeString(this.b);
|
||
|
parcel.writeString(this.a);
|
||
|
}
|
||
|
|
||
|
public final String toString() {
|
||
|
String str = this.d;
|
||
|
String str2 = this.b;
|
||
|
String str3 = this.a;
|
||
|
StringBuilder sb = new StringBuilder("AuditFraudModel(packageName=");
|
||
|
sb.append(str);
|
||
|
sb.append(", appName=");
|
||
|
sb.append(str2);
|
||
|
sb.append(", certificate=");
|
||
|
sb.append(str3);
|
||
|
sb.append(")");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public final int hashCode() {
|
||
|
return (((this.d.hashCode() * 31) + this.b.hashCode()) * 31) + this.a.hashCode();
|
||
|
}
|
||
|
|
||
|
public final boolean equals(Object obj) {
|
||
|
if (this == obj) {
|
||
|
return true;
|
||
|
}
|
||
|
if (!(obj instanceof wEZ)) {
|
||
|
return false;
|
||
|
}
|
||
|
wEZ wez = (wEZ) obj;
|
||
|
return C14957gcv.b((Object) this.d, (Object) wez.d) && C14957gcv.b((Object) this.b, (Object) wez.b) && C14957gcv.b((Object) this.a, (Object) wez.a);
|
||
|
}
|
||
|
}
|