public TopicResultListBean createFromParcel(Parcel in) {
          TopicResultListBean topicResultListBean = new TopicResultListBean();

          topicResultListBean.total_number = in.readInt();
          topicResultListBean.previous_cursor = in.readString();
          topicResultListBean.next_cursor = in.readString();

          topicResultListBean.statuses = new ArrayList<MessageBean>();
          in.readTypedList(topicResultListBean.statuses, MessageBean.CREATOR);

          return topicResultListBean;
        }