63 lines
1.6 KiB
Java
63 lines
1.6 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
import java.util.List;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class GJ implements Parcelable {
|
||
|
public static final LWm CREATOR = new LWm(0);
|
||
|
public String f;
|
||
|
public String g;
|
||
|
public String h;
|
||
|
public List<GM> j;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public GJ() {
|
||
|
}
|
||
|
|
||
|
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
|
||
|
public GJ(Parcel parcel) {
|
||
|
this();
|
||
|
C14957gcv.e(parcel, "");
|
||
|
this.f = parcel.readString();
|
||
|
this.g = parcel.readString();
|
||
|
this.h = parcel.readString();
|
||
|
this.j = parcel.createTypedArrayList(GM.CREATOR);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public void writeToParcel(Parcel parcel, int i) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
parcel.writeString(this.f);
|
||
|
parcel.writeString(this.g);
|
||
|
parcel.writeString(this.h);
|
||
|
parcel.writeTypedList(this.j);
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static final class LWm implements Parcelable.Creator<GJ> {
|
||
|
private LWm() {
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ GJ createFromParcel(Parcel parcel) {
|
||
|
C14957gcv.e(parcel, "");
|
||
|
return new GJ(parcel);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ GJ[] newArray(int i) {
|
||
|
return new GJ[i];
|
||
|
}
|
||
|
|
||
|
public /* synthetic */ LWm(byte b) {
|
||
|
this();
|
||
|
}
|
||
|
}
|
||
|
}
|