示例#1
0
 public void MergeFrom(KeywordPlan 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.forecastPeriod_ != null)
     {
         if (forecastPeriod_ == null)
         {
             ForecastPeriod = new global::Google.Ads.GoogleAds.V2.Resources.KeywordPlanForecastPeriod();
         }
         ForecastPeriod.MergeFrom(other.ForecastPeriod);
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }