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