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

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

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

                case 18: {
                    DisplayText = input.ReadString();
                    break;
                }

                case 26: {
                    Value = input.ReadString();
                    break;
                }
                }
            }
        }
 public void MergeFrom(DefaultSettings other)
 {
     if (other == null)
     {
         return;
     }
     if (other.id_ != null)
     {
         if (id_ == null)
         {
             id_ = new global::HOLMS.Types.TenancyConfig.Indicators.DefaultSettingsIndicator();
         }
         Id.MergeFrom(other.Id);
     }
     if (other.DisplayText.Length != 0)
     {
         DisplayText = other.DisplayText;
     }
     if (other.Value.Length != 0)
     {
         Value = other.Value;
     }
 }