public void MergeFrom(VideoClassificationPredictionResult other)
 {
     if (other == null)
     {
         return;
     }
     if (other.Id.Length != 0)
     {
         Id = other.Id;
     }
     if (other.DisplayName.Length != 0)
     {
         DisplayName = other.DisplayName;
     }
     if (other.Type.Length != 0)
     {
         Type = other.Type;
     }
     if (other.timeSegmentStart_ != null)
     {
         if (timeSegmentStart_ == null)
         {
             TimeSegmentStart = new global::Google.Protobuf.WellKnownTypes.Duration();
         }
         TimeSegmentStart.MergeFrom(other.TimeSegmentStart);
     }
     if (other.timeSegmentEnd_ != null)
     {
         if (timeSegmentEnd_ == null)
         {
             TimeSegmentEnd = new global::Google.Protobuf.WellKnownTypes.Duration();
         }
         TimeSegmentEnd.MergeFrom(other.TimeSegmentEnd);
     }
     if (other.confidence_ != null)
     {
         if (confidence_ == null || other.Confidence != 0F)
         {
             Confidence = other.Confidence;
         }
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }