public void MergeFrom(pb::CodedInputStream input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    input.SkipLastField();
                    break;

                case 10: {
                    if (property_ == null)
                    {
                        property_ = new global::HOLMS.Types.TenancyConfig.Property();
                    }
                    input.ReadMessage(property_);
                    break;
                }

                case 18: {
                    roomTypes_.AddEntriesFrom(input, _repeated_roomTypes_codec);
                    break;
                }
                }
            }
        }
 public void MergeFrom(FullProperty other)
 {
     if (other == null)
     {
         return;
     }
     if (other.property_ != null)
     {
         if (property_ == null)
         {
             property_ = new global::HOLMS.Types.TenancyConfig.Property();
         }
         Property.MergeFrom(other.Property);
     }
     roomTypes_.Add(other.roomTypes_);
 }