public override int GetHashCode() {
   int hash = 1;
   if (partialFailureError_ != null) hash ^= PartialFailureError.GetHashCode();
   hash ^= results_.GetHashCode();
   if (_unknownFields != null) {
     hash ^= _unknownFields.GetHashCode();
   }
   return hash;
 }
 public void MergeFrom(MutateCustomerLabelsResponse other) {
   if (other == null) {
     return;
   }
   if (other.partialFailureError_ != null) {
     if (partialFailureError_ == null) {
       PartialFailureError = new global::Google.Rpc.Status();
     }
     PartialFailureError.MergeFrom(other.PartialFailureError);
   }
   results_.Add(other.results_);
   _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }