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: {
                    ResourceName = input.ReadString();
                    break;
                }

                case 26: {
                    long?value = _single_id_codec.Read(input);
                    if (id_ == null || value != 0L)
                    {
                        Id = value;
                    }
                    break;
                }

                case 34: {
                    string value = _single_name_codec.Read(input);
                    if (name_ == null || value != "")
                    {
                        Name = value;
                    }
                    break;
                }

                case 42: {
                    string value = _single_countryCode_codec.Read(input);
                    if (countryCode_ == null || value != "")
                    {
                        CountryCode = value;
                    }
                    break;
                }

                case 50: {
                    string value = _single_targetType_codec.Read(input);
                    if (targetType_ == null || value != "")
                    {
                        TargetType = value;
                    }
                    break;
                }

                case 56: {
                    status_ = (global::Google.Ads.GoogleAds.V0.Enums.GeoTargetConstantStatusEnum.Types.GeoTargetConstantStatus)input.ReadEnum();
                    break;
                }
                }
            }
        }
 public void MergeFrom(GeoTargetConstant other)
 {
     if (other == null)
     {
         return;
     }
     if (other.ResourceName.Length != 0)
     {
         ResourceName = other.ResourceName;
     }
     if (other.id_ != null)
     {
         if (id_ == null || other.Id != 0L)
         {
             Id = other.Id;
         }
     }
     if (other.name_ != null)
     {
         if (name_ == null || other.Name != "")
         {
             Name = other.Name;
         }
     }
     if (other.countryCode_ != null)
     {
         if (countryCode_ == null || other.CountryCode != "")
         {
             CountryCode = other.CountryCode;
         }
     }
     if (other.targetType_ != null)
     {
         if (targetType_ == null || other.TargetType != "")
         {
             TargetType = other.TargetType;
         }
     }
     if (other.Status != 0)
     {
         Status = other.Status;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }