public void MergeFrom(ClientInstance other)
 {
     if (other == null)
     {
         return;
     }
     if (other.instanceId_ != null)
     {
         if (instanceId_ == null)
         {
             instanceId_ = new global::HOLMS.Types.IAM.ClientInstanceIndicator();
         }
         InstanceId.MergeFrom(other.InstanceId);
     }
     if (other.Name.Length != 0)
     {
         Name = other.Name;
     }
 }