/// <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 (AuthorizationMode != null) { hashCode = hashCode * 59 + AuthorizationMode.GetHashCode(); } if (CustomerReference != null) { hashCode = hashCode * 59 + CustomerReference.GetHashCode(); } if (RecurringPaymentSequenceIndicator != null) { hashCode = hashCode * 59 + RecurringPaymentSequenceIndicator.GetHashCode(); } if (RequiresApproval != null) { hashCode = hashCode * 59 + RequiresApproval.GetHashCode(); } if (SkipAuthentication != null) { hashCode = hashCode * 59 + SkipAuthentication.GetHashCode(); } if (SkipFraudService != null) { hashCode = hashCode * 59 + SkipFraudService.GetHashCode(); } if (Token != null) { hashCode = hashCode * 59 + Token.GetHashCode(); } if (Tokenize != null) { hashCode = hashCode * 59 + Tokenize.GetHashCode(); } if (TransactionChannel != null) { hashCode = hashCode * 59 + TransactionChannel.GetHashCode(); } if (UnscheduledCardOnFileIndicator != null) { hashCode = hashCode * 59 + UnscheduledCardOnFileIndicator.GetHashCode(); } if (UnscheduledCardOnFileRequestor != null) { hashCode = hashCode * 59 + UnscheduledCardOnFileRequestor.GetHashCode(); } return(hashCode); } }
/// <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) )); }