/// <summary>
 /// Gets the hash code
 /// </summary>
 /// <returns>Hash code</returns>
 public override int GetHashCode()
 {
     unchecked // Overflow is fine, just wrap
     {
         var hashCode = 41;
         // Suitable nullity checks etc, of course :)
         if (JmxObjectname != null)
         {
             hashCode = hashCode * 59 + JmxObjectname.GetHashCode();
         }
         if (PropertyMeasureEnabled != null)
         {
             hashCode = hashCode * 59 + PropertyMeasureEnabled.GetHashCode();
         }
         if (PropertyName != null)
         {
             hashCode = hashCode * 59 + PropertyName.GetHashCode();
         }
         if (PropertyMaxWaitMs != null)
         {
             hashCode = hashCode * 59 + PropertyMaxWaitMs.GetHashCode();
         }
         if (PropertyMaxRate != null)
         {
             hashCode = hashCode * 59 + PropertyMaxRate.GetHashCode();
         }
         if (FulltextMeasureEnabled != null)
         {
             hashCode = hashCode * 59 + FulltextMeasureEnabled.GetHashCode();
         }
         if (FulltextName != null)
         {
             hashCode = hashCode * 59 + FulltextName.GetHashCode();
         }
         if (FulltextMaxWaitMs != null)
         {
             hashCode = hashCode * 59 + FulltextMaxWaitMs.GetHashCode();
         }
         if (FulltextMaxRate != null)
         {
             hashCode = hashCode * 59 + FulltextMaxRate.GetHashCode();
         }
         return(hashCode);
     }
 }