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

            return
                ((
                     Phoneid == other.Phoneid ||
                     Phoneid != null &&
                     Phoneid.Equals(other.Phoneid)
                     ) &&
                 (
                     FeedbackType == other.FeedbackType ||
                     FeedbackType != null &&
                     FeedbackType.Equals(other.FeedbackType)
                 ) &&
                 (
                     FeedbackValue == other.FeedbackValue ||
                     FeedbackValue != null &&
                     FeedbackValue.Equals(other.FeedbackValue)
                 ) &&
                 (
                     FeedbackMessage == other.FeedbackMessage ||
                     FeedbackMessage != null &&
                     FeedbackMessage.Equals(other.FeedbackMessage)
                 ) &&
                 (
                     FeedbackLat == other.FeedbackLat ||
                     FeedbackLat != null &&
                     FeedbackLat.Equals(other.FeedbackLat)
                 ) &&
                 (
                     FeedbackLon == other.FeedbackLon ||
                     FeedbackLon != null &&
                     FeedbackLon.Equals(other.FeedbackLon)
                 ));
        }