public void MergeFrom(JournalEntry other)
 {
     if (other == null)
     {
         return;
     }
     if (other.addEntry_ != null)
     {
         if (addEntry_ == null)
         {
             addEntry_ = new global::POGOProtos.Data.AssetCache.JournalAddEntry();
         }
         AddEntry.MergeFrom(other.AddEntry);
     }
     if (other.readEntry_ != null)
     {
         if (readEntry_ == null)
         {
             readEntry_ = new global::POGOProtos.Data.AssetCache.JournalReadEntry();
         }
         ReadEntry.MergeFrom(other.ReadEntry);
     }
     if (other.removeEntry_ != null)
     {
         if (removeEntry_ == null)
         {
             removeEntry_ = new global::POGOProtos.Data.AssetCache.JournalRemoveEntry();
         }
         RemoveEntry.MergeFrom(other.RemoveEntry);
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }
        public void MergeFrom(pb::CodedInputStream input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
                    break;

                case 10: {
                    if (addEntry_ == null)
                    {
                        addEntry_ = new global::POGOProtos.Data.AssetCache.JournalAddEntry();
                    }
                    input.ReadMessage(addEntry_);
                    break;
                }

                case 18: {
                    if (readEntry_ == null)
                    {
                        readEntry_ = new global::POGOProtos.Data.AssetCache.JournalReadEntry();
                    }
                    input.ReadMessage(readEntry_);
                    break;
                }

                case 26: {
                    if (removeEntry_ == null)
                    {
                        removeEntry_ = new global::POGOProtos.Data.AssetCache.JournalRemoveEntry();
                    }
                    input.ReadMessage(removeEntry_);
                    break;
                }
                }
            }
        }