public RateData(android.os.Parcel in) {
    // primitive bitfield of type: byte
    __isset_bitfield = in.readByte();

    this.userID = in.readLong();
    this.postID = in.readLong();
    this.ratingValue = in.readDouble();
  }
  @Override
  public void writeToParcel(android.os.Parcel out, int flags) {
    // primitive bitfield of type: byte
    out.writeByte(__isset_bitfield);

    out.writeLong(userID);
    out.writeLong(postID);
    out.writeDouble(ratingValue);
  }