/// <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 (FormsFormparagraphpostprocessorEnabled != null)
         {
             hashCode = hashCode * 59 + FormsFormparagraphpostprocessorEnabled.GetHashCode();
         }
         if (FormsFormparagraphpostprocessorFormresourcetypes != null)
         {
             hashCode = hashCode * 59 + FormsFormparagraphpostprocessorFormresourcetypes.GetHashCode();
         }
         return(hashCode);
     }
 }
        /// <summary>
        /// Returns true if ComDayCqWcmFoundationFormsImplFormParagraphPostProcessorProperties instances are equal
        /// </summary>
        /// <param name="other">Instance of ComDayCqWcmFoundationFormsImplFormParagraphPostProcessorProperties to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(ComDayCqWcmFoundationFormsImplFormParagraphPostProcessorProperties other)
        {
            if (other is null)
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     FormsFormparagraphpostprocessorEnabled == other.FormsFormparagraphpostprocessorEnabled ||
                     FormsFormparagraphpostprocessorEnabled != null &&
                     FormsFormparagraphpostprocessorEnabled.Equals(other.FormsFormparagraphpostprocessorEnabled)
                     ) &&
                 (
                     FormsFormparagraphpostprocessorFormresourcetypes == other.FormsFormparagraphpostprocessorFormresourcetypes ||
                     FormsFormparagraphpostprocessorFormresourcetypes != null &&
                     FormsFormparagraphpostprocessorFormresourcetypes.Equals(other.FormsFormparagraphpostprocessorFormresourcetypes)
                 ));
        }