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 18: {
                    long?value = _single_id_codec.Read(input);
                    if (id_ == null || value != 0L)
                    {
                        Id = value;
                    }
                    break;
                }

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

                case 34: {
                    int?value = _single_osMajorVersion_codec.Read(input);
                    if (osMajorVersion_ == null || value != 0)
                    {
                        OsMajorVersion = value;
                    }
                    break;
                }

                case 42: {
                    int?value = _single_osMinorVersion_codec.Read(input);
                    if (osMinorVersion_ == null || value != 0)
                    {
                        OsMinorVersion = value;
                    }
                    break;
                }

                case 48: {
                    operatorType_ = (global::Google.Ads.GoogleAds.V1.Enums.OperatingSystemVersionOperatorTypeEnum.Types.OperatingSystemVersionOperatorType)input.ReadEnum();
                    break;
                }
                }
            }
        }
 public void MergeFrom(OperatingSystemVersionConstant 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.osMajorVersion_ != null)
     {
         if (osMajorVersion_ == null || other.OsMajorVersion != 0)
         {
             OsMajorVersion = other.OsMajorVersion;
         }
     }
     if (other.osMinorVersion_ != null)
     {
         if (osMinorVersion_ == null || other.OsMinorVersion != 0)
         {
             OsMinorVersion = other.OsMinorVersion;
         }
     }
     if (other.OperatorType != 0)
     {
         OperatorType = other.OperatorType;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }