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

            return
                ((
                     AuthorizationMode == other.AuthorizationMode ||
                     AuthorizationMode != null &&
                     AuthorizationMode.Equals(other.AuthorizationMode)
                     ) &&
                 (
                     DecryptedPaymentData == other.DecryptedPaymentData ||
                     DecryptedPaymentData != null &&
                     DecryptedPaymentData.Equals(other.DecryptedPaymentData)
                 ) &&
                 (
                     EncryptedPaymentData == other.EncryptedPaymentData ||
                     EncryptedPaymentData != null &&
                     EncryptedPaymentData.Equals(other.EncryptedPaymentData)
                 ) &&
                 (
                     RequiresApproval == other.RequiresApproval ||
                     RequiresApproval != null &&
                     RequiresApproval.Equals(other.RequiresApproval)
                 ) &&
                 (
                     SkipFraudService == other.SkipFraudService ||
                     SkipFraudService != null &&
                     SkipFraudService.Equals(other.SkipFraudService)
                 ) &&
                 (
                     TransactionId == other.TransactionId ||
                     TransactionId != null &&
                     TransactionId.Equals(other.TransactionId)
                 ));
        }
        /// <summary>
        /// Returns true if AbstractCardPaymentMethodSpecificInput instances are equal
        /// </summary>
        /// <param name="other">Instance of AbstractCardPaymentMethodSpecificInput to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(AbstractCardPaymentMethodSpecificInput other)
        {
            if (ReferenceEquals(null, other))
            {
                return(false);
            }
            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return
                ((
                     AuthorizationMode == other.AuthorizationMode ||
                     AuthorizationMode != null &&
                     AuthorizationMode.Equals(other.AuthorizationMode)
                     ) &&
                 (
                     CustomerReference == other.CustomerReference ||
                     CustomerReference != null &&
                     CustomerReference.Equals(other.CustomerReference)
                 ) &&
                 (
                     RecurringPaymentSequenceIndicator == other.RecurringPaymentSequenceIndicator ||
                     RecurringPaymentSequenceIndicator != null &&
                     RecurringPaymentSequenceIndicator.Equals(other.RecurringPaymentSequenceIndicator)
                 ) &&
                 (
                     RequiresApproval == other.RequiresApproval ||
                     RequiresApproval != null &&
                     RequiresApproval.Equals(other.RequiresApproval)
                 ) &&
                 (
                     SkipAuthentication == other.SkipAuthentication ||
                     SkipAuthentication != null &&
                     SkipAuthentication.Equals(other.SkipAuthentication)
                 ) &&
                 (
                     SkipFraudService == other.SkipFraudService ||
                     SkipFraudService != null &&
                     SkipFraudService.Equals(other.SkipFraudService)
                 ) &&
                 (
                     Token == other.Token ||
                     Token != null &&
                     Token.Equals(other.Token)
                 ) &&
                 (
                     Tokenize == other.Tokenize ||
                     Tokenize != null &&
                     Tokenize.Equals(other.Tokenize)
                 ) &&
                 (
                     TransactionChannel == other.TransactionChannel ||
                     TransactionChannel != null &&
                     TransactionChannel.Equals(other.TransactionChannel)
                 ) &&
                 (
                     UnscheduledCardOnFileIndicator == other.UnscheduledCardOnFileIndicator ||
                     UnscheduledCardOnFileIndicator != null &&
                     UnscheduledCardOnFileIndicator.Equals(other.UnscheduledCardOnFileIndicator)
                 ) &&
                 (
                     UnscheduledCardOnFileRequestor == other.UnscheduledCardOnFileRequestor ||
                     UnscheduledCardOnFileRequestor != null &&
                     UnscheduledCardOnFileRequestor.Equals(other.UnscheduledCardOnFileRequestor)
                 ));
        }