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

            return
                ((
                     CqDamExpiryNotificationSchedulerIstimebased == other.CqDamExpiryNotificationSchedulerIstimebased ||
                     CqDamExpiryNotificationSchedulerIstimebased != null &&
                     CqDamExpiryNotificationSchedulerIstimebased.Equals(other.CqDamExpiryNotificationSchedulerIstimebased)
                     ) &&
                 (
                     CqDamExpiryNotificationSchedulerTimebasedRule == other.CqDamExpiryNotificationSchedulerTimebasedRule ||
                     CqDamExpiryNotificationSchedulerTimebasedRule != null &&
                     CqDamExpiryNotificationSchedulerTimebasedRule.Equals(other.CqDamExpiryNotificationSchedulerTimebasedRule)
                 ) &&
                 (
                     CqDamExpiryNotificationSchedulerPeriodRule == other.CqDamExpiryNotificationSchedulerPeriodRule ||
                     CqDamExpiryNotificationSchedulerPeriodRule != null &&
                     CqDamExpiryNotificationSchedulerPeriodRule.Equals(other.CqDamExpiryNotificationSchedulerPeriodRule)
                 ) &&
                 (
                     SendEmail == other.SendEmail ||
                     SendEmail != null &&
                     SendEmail.Equals(other.SendEmail)
                 ) &&
                 (
                     AssetExpiredLimit == other.AssetExpiredLimit ||
                     AssetExpiredLimit != null &&
                     AssetExpiredLimit.Equals(other.AssetExpiredLimit)
                 ) &&
                 (
                     PriorNotificationSeconds == other.PriorNotificationSeconds ||
                     PriorNotificationSeconds != null &&
                     PriorNotificationSeconds.Equals(other.PriorNotificationSeconds)
                 ) &&
                 (
                     CqDamExpiryNotificationUrlProtocol == other.CqDamExpiryNotificationUrlProtocol ||
                     CqDamExpiryNotificationUrlProtocol != null &&
                     CqDamExpiryNotificationUrlProtocol.Equals(other.CqDamExpiryNotificationUrlProtocol)
                 ));
        }