/// <summary>
        /// Returns true if ComAdobeGraniteWorkflowCoreWorkflowConfigProperties instances are equal
        /// </summary>
        /// <param name="other">Instance of ComAdobeGraniteWorkflowCoreWorkflowConfigProperties to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(ComAdobeGraniteWorkflowCoreWorkflowConfigProperties other)
        {
            if (other is null)
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     CqWorkflowConfigWorkflowPackagesRootPath == other.CqWorkflowConfigWorkflowPackagesRootPath ||
                     CqWorkflowConfigWorkflowPackagesRootPath != null &&
                     CqWorkflowConfigWorkflowPackagesRootPath.Equals(other.CqWorkflowConfigWorkflowPackagesRootPath)
                     ) &&
                 (
                     CqWorkflowConfigWorkflowProcessLegacyMode == other.CqWorkflowConfigWorkflowProcessLegacyMode ||
                     CqWorkflowConfigWorkflowProcessLegacyMode != null &&
                     CqWorkflowConfigWorkflowProcessLegacyMode.Equals(other.CqWorkflowConfigWorkflowProcessLegacyMode)
                 ) &&
                 (
                     CqWorkflowConfigAllowLocking == other.CqWorkflowConfigAllowLocking ||
                     CqWorkflowConfigAllowLocking != null &&
                     CqWorkflowConfigAllowLocking.Equals(other.CqWorkflowConfigAllowLocking)
                 ));
        }
 /// <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 (CqWorkflowConfigWorkflowPackagesRootPath != null)
         {
             hashCode = hashCode * 59 + CqWorkflowConfigWorkflowPackagesRootPath.GetHashCode();
         }
         if (CqWorkflowConfigWorkflowProcessLegacyMode != null)
         {
             hashCode = hashCode * 59 + CqWorkflowConfigWorkflowProcessLegacyMode.GetHashCode();
         }
         if (CqWorkflowConfigAllowLocking != null)
         {
             hashCode = hashCode * 59 + CqWorkflowConfigAllowLocking.GetHashCode();
         }
         return(hashCode);
     }
 }