package com.mstar.android.tvapi.dtv.vo;

import android.os.Parcel;
import android.os.Parcelable;

/* JADX INFO: loaded from: classes.dex */
public class CaServiceEntitle implements Parcelable {
    public static final Parcelable.Creator<CaServiceEntitle> CREATOR = new Parcelable.Creator<CaServiceEntitle>() { // from class: com.mstar.android.tvapi.dtv.vo.CaServiceEntitle.1
        /* JADX WARN: Can't rename method to resolve collision */
        @Override // android.os.Parcelable.Creator
        public CaServiceEntitle createFromParcel(Parcel parcel) {
            return new CaServiceEntitle(parcel);
        }

        /* JADX WARN: Can't rename method to resolve collision */
        @Override // android.os.Parcelable.Creator
        public CaServiceEntitle[] newArray(int i2) {
            return new CaServiceEntitle[i2];
        }
    };
    public short m_bCanTape;
    public short sBeginDate;
    public short sExpireDate;
    public int wwProductID;

    @Override // android.os.Parcelable
    public int describeContents() {
        return 0;
    }

    @Override // android.os.Parcelable
    public void writeToParcel(Parcel parcel, int i2) {
        parcel.writeInt(this.wwProductID);
        parcel.writeInt(this.sBeginDate);
        parcel.writeInt(this.sExpireDate);
        parcel.writeInt(this.m_bCanTape);
    }

    public CaServiceEntitle() {
        this.wwProductID = 0;
        this.sBeginDate = (short) 0;
        this.sExpireDate = (short) 0;
        this.m_bCanTape = (short) 0;
    }

    private CaServiceEntitle(Parcel parcel) {
        this.wwProductID = parcel.readInt();
        this.sBeginDate = (short) parcel.readInt();
        this.sExpireDate = (short) parcel.readInt();
        this.m_bCanTape = (short) parcel.readInt();
    }
}
