/// <summary> /// Processes the service pipeline arguments. /// </summary> /// <param name="args">The service pipeline arguments.</param> public override void Process(ServicePipelineArgs args) { Assert.ArgumentNotNull(args, "args"); Assert.ArgumentCondition(args.Request is GetPaymentServiceActionResultRequest, "args.Request", "Request must be of type GetPaymentServiceActionResultRequest."); Assert.ArgumentCondition(args.Result is GetPaymentServiceActionResultResult, "args.Result", "Result must be of type GetPaymentServiceActionResultResult."); var request = (GetPaymentServiceActionResultRequest)args.Request; var result = (GetPaymentServiceActionResultResult)args.Result; var serviceRequestProperties = new List <PaymentProperty>(); serviceRequestProperties.AddRange(this.GetMerchantProperties() ?? Enumerable.Empty <PaymentProperty>()); serviceRequestProperties.Add(new PaymentProperty( GenericNamespace.TransactionData, TransactionDataProperties.PaymentAcceptResultAccessCode, request.PaymentAcceptResultAccessCode)); var serviceResponse = this.ExecutePaymentServiceRequest( serviceRequestProperties, RetrievePaymentAcceptResultRelativeUri, request.Locale, result.SystemMessages); if (serviceResponse != null) { var serviceResponseProperties = PaymentProperty.ConvertToHashtable(serviceResponse.Properties); string token; PaymentProperty.GetPropertyValue( serviceResponseProperties, GenericNamespace.PaymentCard, PaymentCardProperties.CardToken, out token); var innerAuthorizeResponseProperty = PaymentProperty.GetPropertyFromHashtable( serviceResponseProperties, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.Properties); var innerAuthorizeResponseProperties = PaymentProperty.ConvertToHashtable(innerAuthorizeResponseProperty.PropertyList); string authorizationResult = null; PaymentProperty.GetPropertyValue( innerAuthorizeResponseProperties, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.AuthorizationResult, out authorizationResult); result.AuthorizationResult = authorizationResult; result.CardToken = token; result.Success = true; } else { result.Success = false; } }
internal static RefundRequest ConvertFrom(Request request) { var refundRequest = new RefundRequest(); var errors = new List <PaymentError>(); refundRequest.ReadBaseProperties(request, errors); // Check capture response Hashtable hashtable = PaymentProperty.ConvertToHashtable(request.Properties); PaymentProperty captureResponsePropertyList = PaymentProperty.GetPropertyFromHashtable(hashtable, GenericNamespace.CaptureResponse, CaptureResponseProperties.Properties); // Read card data if (captureResponsePropertyList != null) { refundRequest.IsLinkedRefund = true; // Linked refund, get card data from CaptureResponse Hashtable captureHashtable = PaymentProperty.ConvertToHashtable(captureResponsePropertyList.PropertyList); refundRequest.CardType = PaymentUtilities.GetPropertyStringValue( captureHashtable, GenericNamespace.CaptureResponse, CaptureResponseProperties.CardType, errors, ErrorCode.InvalidRequest); refundRequest.CardToken = PaymentUtilities.GetPropertyStringValue( captureHashtable, GenericNamespace.CaptureResponse, CaptureResponseProperties.CardToken); refundRequest.Last4Digit = PaymentUtilities.GetPropertyStringValue( captureHashtable, GenericNamespace.CaptureResponse, CaptureResponseProperties.Last4Digits); refundRequest.UniqueCardId = PaymentUtilities.GetPropertyStringValue( captureHashtable, GenericNamespace.CaptureResponse, CaptureResponseProperties.UniqueCardId); // Get other capture transaction data refundRequest.CaptureTransactionType = PaymentUtilities.GetPropertyStringValue( captureHashtable, GenericNamespace.CaptureResponse, CaptureResponseProperties.TransactionType, errors, ErrorCode.InvalidRequest); if (refundRequest.CaptureTransactionType != null && !TransactionType.Capture.ToString().Equals(refundRequest.CaptureTransactionType, StringComparison.OrdinalIgnoreCase)) { errors.Add(new PaymentError(ErrorCode.InvalidTransaction, "Refund does not support this type of transaction")); } refundRequest.CaptureApprovalCode = PaymentUtilities.GetPropertyStringValue( captureHashtable, GenericNamespace.CaptureResponse, CaptureResponseProperties.ApprovalCode); refundRequest.CaptureProviderMessage = PaymentUtilities.GetPropertyStringValue( captureHashtable, GenericNamespace.CaptureResponse, CaptureResponseProperties.ProviderMessage); refundRequest.CaptureProviderTransactionId = PaymentUtilities.GetPropertyStringValue( captureHashtable, GenericNamespace.CaptureResponse, CaptureResponseProperties.ProviderTransactionId, errors, ErrorCode.InvalidRequest); refundRequest.CaptureResponseCode = PaymentUtilities.GetPropertyStringValue( captureHashtable, GenericNamespace.CaptureResponse, CaptureResponseProperties.ResponseCode); refundRequest.CaptureResult = PaymentUtilities.GetPropertyStringValue( captureHashtable, GenericNamespace.CaptureResponse, CaptureResponseProperties.CaptureResult, errors, ErrorCode.InvalidRequest); refundRequest.CaptureTransactionDateTime = PaymentUtilities.GetPropertyDateTimeValue( captureHashtable, GenericNamespace.CaptureResponse, CaptureResponseProperties.TransactionDateTime); } else { // Not a linked refund, get card data from PaymentCard refundRequest.CardType = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.CardType, errors, ErrorCode.InvalidRequest); if (refundRequest.CardType != null && !PaymentUtilities.ValidateCardType(refundRequest.SupportedTenderTypes, refundRequest.CardType)) { errors.Add(new PaymentError(ErrorCode.CardTypeNotSupported, string.Format("Card type is not supported: {0}.", refundRequest.CardType))); } refundRequest.IsSwipe = PaymentUtilities.GetPropertyBooleanValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.IsSwipe); if (refundRequest.IsSwipe ?? false) { refundRequest.Track1 = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.Track1); refundRequest.Track2 = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.Track2); refundRequest.CardNumber = PaymentUtilities.ParseTrack1ForCardNumber(refundRequest.Track1); if (refundRequest.CardNumber == null) { refundRequest.CardNumber = PaymentUtilities.ParseTrack2ForCardNumber(refundRequest.Track2); } if (refundRequest.CardNumber == null) { errors.Add(new PaymentError(ErrorCode.InvalidCardTrackData, "Invalid card track data.")); } decimal expirationYear, expirationMonth; HelperUtilities.ParseTrackDataForExpirationDate(refundRequest.Track1 ?? string.Empty, refundRequest.Track2 ?? string.Empty, out expirationYear, out expirationMonth); refundRequest.ExpirationYear = expirationYear; refundRequest.ExpirationMonth = expirationMonth; } else { refundRequest.CardToken = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.CardToken); if (refundRequest.CardToken == null) { refundRequest.CardNumber = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.CardNumber, errors, ErrorCode.InvalidCardNumber); } else { refundRequest.Last4Digit = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.Last4Digits); } refundRequest.ExpirationYear = PaymentUtilities.GetPropertyDecimalValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.ExpirationYear, errors, ErrorCode.InvalidExpirationDate); refundRequest.ExpirationMonth = PaymentUtilities.GetPropertyDecimalValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.ExpirationMonth, errors, ErrorCode.InvalidExpirationDate); } if (refundRequest.CardNumber != null && !HelperUtilities.ValidateBankCardNumber(refundRequest.CardNumber)) { errors.Add(new PaymentError(ErrorCode.InvalidCardNumber, "Invalid card number.")); } if (refundRequest.ExpirationYear.HasValue && refundRequest.ExpirationMonth.HasValue && refundRequest.ExpirationYear >= 0M && refundRequest.ExpirationMonth >= 0M && !PaymentUtilities.ValidateExpirationDate(refundRequest.ExpirationYear.Value, refundRequest.ExpirationMonth.Value)) { errors.Add(new PaymentError(ErrorCode.InvalidExpirationDate, "Invalid expiration date.")); } if (Microsoft.Dynamics.Retail.PaymentSDK.Portable.CardType.Debit.ToString().Equals(refundRequest.CardType, StringComparison.OrdinalIgnoreCase)) { refundRequest.EncryptedPin = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.EncryptedPin, errors, ErrorCode.CannotVerifyPin); refundRequest.AdditionalSecurityData = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.AdditionalSecurityData); } refundRequest.CardVerificationValue = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.CardVerificationValue); refundRequest.Name = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.Name); refundRequest.StreetAddress = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.StreetAddress); refundRequest.StreetAddress2 = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.StreetAddress2); refundRequest.City = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.City); refundRequest.State = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.State); refundRequest.PostalCode = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.PostalCode); refundRequest.Country = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.Country); refundRequest.Phone = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.Phone); refundRequest.AccountType = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.AccountType); refundRequest.UniqueCardId = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.UniqueCardId); } // Read transaction data refundRequest.Amount = PaymentUtilities.GetPropertyDecimalValue( hashtable, GenericNamespace.TransactionData, TransactionDataProperties.Amount, errors, ErrorCode.InvalidAmount); refundRequest.CurrencyCode = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.TransactionData, TransactionDataProperties.CurrencyCode, errors, ErrorCode.InvalidRequest); if (refundRequest.CurrencyCode != null && !PaymentUtilities.ValidateCurrencyCode(refundRequest.SupportedCurrencies, refundRequest.CurrencyCode)) { errors.Add(new PaymentError(ErrorCode.UnsupportedCurrency, string.Format("Currency code is not supported: {0}.", refundRequest.CurrencyCode))); } refundRequest.SupportCardTokenization = PaymentUtilities.GetPropertyBooleanValue( hashtable, GenericNamespace.TransactionData, TransactionDataProperties.SupportCardTokenization); refundRequest.PurchaseLevel = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.TransactionData, TransactionDataProperties.PurchaseLevel); refundRequest.Level2Data = PaymentUtilities.GetLevel2Data(hashtable); refundRequest.Level3Data = PaymentUtilities.GetLevel3Data(hashtable); if (errors.Count > 0) { throw new SampleException(errors); } return(refundRequest); }
private void RetrievePaymentAcceptResult() { // Get payment processor PaymentProcessorManager.Create(new string[] { ConnectorAssembly }); IPaymentProcessor processor = PaymentProcessorManager.GetPaymentProcessor(ConnectorName); // Prepare payment request var request = new Request(); request.Locale = this.requestLocale; var properties = new List <PaymentProperty>(); this.AddMerchantProperties(properties); PaymentProperty property; property = new PaymentProperty( GenericNamespace.TransactionData, TransactionDataProperties.PaymentAcceptResultAccessCode, this.ResultAccessCodeHiddenField.Value); properties.Add(property); request.Properties = properties.ToArray(); // Call Response response = processor.RetrievePaymentAcceptResult(request); string cardTokenResult = "N/A"; string authorizationResult = "N/A"; string captureResult = "N/A"; string voidResult = "N/A"; string errors = "None"; if (response != null && response.Properties != null) { Hashtable responseProperties = PaymentProperty.ConvertToHashtable(response.Properties); // Read card token string token; PaymentProperty.GetPropertyValue( responseProperties, GenericNamespace.PaymentCard, PaymentCardProperties.CardToken, out token); if (!string.IsNullOrEmpty(token)) { // Store token or use token. // In this sample, we send the token to the next page to display. Do not do this in production. cardTokenResult = token; } // Read authorize result if (this.transactionType == TransactionType.Authorize || this.transactionType == TransactionType.Capture) { PaymentProperty innerAuthorizeResponseProperty = PaymentProperty.GetPropertyFromHashtable( responseProperties, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.Properties); if (innerAuthorizeResponseProperty != null) { var innerAuthorizeResponseProperties = PaymentProperty.ConvertToHashtable(innerAuthorizeResponseProperty.PropertyList); string authorizationResultOut = null; PaymentProperty.GetPropertyValue( innerAuthorizeResponseProperties, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.AuthorizationResult, out authorizationResultOut); if (!string.IsNullOrEmpty(authorizationResultOut)) { authorizationResult = authorizationResultOut; } } } // Read capture result if (this.transactionType == TransactionType.Capture) { PaymentProperty innerCaptureResponseProperty = PaymentProperty.GetPropertyFromHashtable( responseProperties, GenericNamespace.CaptureResponse, CaptureResponseProperties.Properties); if (innerCaptureResponseProperty != null) { var innerCaptureResponseProperties = PaymentProperty.ConvertToHashtable(innerCaptureResponseProperty.PropertyList); string captureResultOut = null; PaymentProperty.GetPropertyValue( innerCaptureResponseProperties, GenericNamespace.CaptureResponse, CaptureResponseProperties.CaptureResult, out captureResultOut); if (!string.IsNullOrEmpty(captureResultOut)) { captureResult = captureResultOut; } } } // Read void result if (this.transactionType == TransactionType.Authorize || this.transactionType == TransactionType.Capture) { PaymentProperty innerVoidResponseProperty = PaymentProperty.GetPropertyFromHashtable( responseProperties, GenericNamespace.VoidResponse, VoidResponseProperties.Properties); if (innerVoidResponseProperty != null) { var innerVoidResponseProperties = PaymentProperty.ConvertToHashtable(innerVoidResponseProperty.PropertyList); string voidResultOut = null; PaymentProperty.GetPropertyValue( innerVoidResponseProperties, GenericNamespace.VoidResponse, VoidResponseProperties.VoidResult, out voidResultOut); if (!string.IsNullOrEmpty(voidResultOut)) { voidResult = voidResultOut; } } } } if (response.Errors != null && response.Errors.Length > 0) { StringBuilder sb = new StringBuilder(); foreach (var error in response.Errors) { sb.AppendLine(string.Format("{0}: {1}", error.Code, error.Message)); } errors = sb.ToString(); } Server.Transfer( string.Format( "ResultPage.aspx?cardTokenResult={0}&authorizationResult={1}&captureResult={2}&voidResult={3}&errors={4}", HttpUtility.UrlEncode(cardTokenResult), HttpUtility.UrlEncode(authorizationResult), HttpUtility.UrlEncode(captureResult), HttpUtility.UrlEncode(voidResult), HttpUtility.UrlEncode(errors))); }
internal static VoidRequest ConvertFrom(Request request) { var voidRequest = new VoidRequest(); var errors = new List <PaymentError>(); voidRequest.ReadBaseProperties(request, errors); // Check authorization response var hashtable = PaymentProperty.ConvertToHashtable(request.Properties); PaymentProperty authorizationResponsePropertyList = PaymentProperty.GetPropertyFromHashtable(hashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.Properties); Dictionary <string, object> authorizationHashtable = null; if (authorizationResponsePropertyList == null) { errors.Add(new PaymentError(ErrorCode.InvalidRequest, "Authorization response is missing.")); throw new SampleException(errors); } else { authorizationHashtable = PaymentProperty.ConvertToHashtable(authorizationResponsePropertyList.PropertyList); } // Read card data voidRequest.CardType = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.CardType, errors, ErrorCode.InvalidRequest); voidRequest.IsSwipe = PaymentUtilities.GetPropertyBooleanValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.IsSwiped, false); voidRequest.CardToken = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.CardToken); voidRequest.Last4Digit = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.Last4Digits); voidRequest.AccountType = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.AccountType); voidRequest.UniqueCardId = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.UniqueCardId); voidRequest.VoiceAuthorizationCode = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.VoiceAuthorizationCode); // Read authorization data voidRequest.AuthorizationTransactionType = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.TransactionType, errors, ErrorCode.InvalidRequest); if (voidRequest.AuthorizationTransactionType != null && !TransactionType.Authorize.ToString().Equals(voidRequest.AuthorizationTransactionType, StringComparison.OrdinalIgnoreCase)) { errors.Add(new PaymentError(ErrorCode.InvalidTransaction, "Void does not support this type of transaction")); } voidRequest.AuthorizationApprovalCode = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.ApprovalCode); voidRequest.AuthorizationApprovedAmount = PaymentUtilities.GetPropertyDecimalValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.ApprovedAmount, errors, ErrorCode.InvalidRequest); voidRequest.CurrencyCode = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.CurrencyCode, errors, ErrorCode.InvalidRequest); voidRequest.AuthorizationCashbackAmount = PaymentUtilities.GetPropertyDecimalValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.CashBackAmount); voidRequest.AuthorizationProviderMessage = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.ProviderMessage); voidRequest.AuthorizationProviderTransactionId = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.ProviderTransactionId, errors, ErrorCode.InvalidRequest); voidRequest.AuthorizationResponseCode = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.ResponseCode); voidRequest.AuthorizationResult = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.AuthorizationResult, errors, ErrorCode.InvalidRequest); voidRequest.AuthorizationTransactionDateTime = PaymentUtilities.GetPropertyDateTimeValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.TransactionDateTime); if (errors.Count > 0) { throw new SampleException(errors); } return(voidRequest); }
internal static CaptureRequest ConvertFrom(Request request) { var captureRequest = new CaptureRequest(); var errors = new List <PaymentError>(); captureRequest.ReadBaseProperties(request, errors); // Check authorization response Hashtable hashtable = PaymentProperty.ConvertToHashtable(request.Properties); PaymentProperty authorizationResponsePropertyList = PaymentProperty.GetPropertyFromHashtable(hashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.Properties); Hashtable authorizationHashtable = null; if (authorizationResponsePropertyList == null) { errors.Add(new PaymentError(ErrorCode.InvalidRequest, "Authorization response is missing.")); throw new SampleException(errors); } else { authorizationHashtable = PaymentProperty.ConvertToHashtable(authorizationResponsePropertyList.PropertyList); } // Read card data captureRequest.CardType = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.CardType, errors, ErrorCode.InvalidRequest); captureRequest.IsSwipe = PaymentUtilities.GetPropertyBooleanValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.IsSwiped); if (captureRequest.IsSwipe ?? false) { captureRequest.Track1 = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.Track1); captureRequest.Track2 = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.Track2); captureRequest.CardNumber = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.CardNumber); if (string.IsNullOrEmpty(captureRequest.CardNumber)) { captureRequest.CardNumber = PaymentUtilities.ParseTrack1ForCardNumber(captureRequest.Track1); if (captureRequest.CardNumber == null) { captureRequest.CardNumber = PaymentUtilities.ParseTrack2ForCardNumber(captureRequest.Track2); } } if (string.IsNullOrEmpty(captureRequest.CardNumber)) { errors.Add(new PaymentError(ErrorCode.InvalidCardTrackData, "Invalid card track data.")); } } else { captureRequest.CardToken = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.CardToken); if (captureRequest.CardToken == null) { captureRequest.CardToken = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.CardToken); if (captureRequest.CardToken == null) { captureRequest.CardNumber = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.PaymentCard, PaymentCardProperties.CardNumber, errors, ErrorCode.InvalidCardNumber); } } } if (string.IsNullOrWhiteSpace(captureRequest.CardNumber) && string.IsNullOrWhiteSpace(captureRequest.CardToken)) { errors.Add(new PaymentError(ErrorCode.InvalidRequest, string.Format("Neither card number nor card token is provided."))); } captureRequest.Last4Digit = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.Last4Digits); captureRequest.AccountType = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.AccountType); captureRequest.UniqueCardId = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.UniqueCardId); captureRequest.VoiceAuthorizationCode = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.VoiceAuthorizationCode); // Read transaction data captureRequest.Amount = PaymentUtilities.GetPropertyDecimalValue( hashtable, GenericNamespace.TransactionData, TransactionDataProperties.Amount, errors, ErrorCode.InvalidAmount); captureRequest.CurrencyCode = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.TransactionData, TransactionDataProperties.CurrencyCode, errors, ErrorCode.InvalidRequest); captureRequest.PurchaseLevel = PaymentUtilities.GetPropertyStringValue( hashtable, GenericNamespace.TransactionData, TransactionDataProperties.PurchaseLevel); captureRequest.Level2Data = PaymentUtilities.GetLevel2Data(hashtable); captureRequest.Level3Data = PaymentUtilities.GetLevel3Data(hashtable); // Read authorization data captureRequest.AuthorizationTransactionType = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.TransactionType, errors, ErrorCode.InvalidRequest); if (captureRequest.AuthorizationTransactionType != null && !TransactionType.Authorize.ToString().Equals(captureRequest.AuthorizationTransactionType, StringComparison.OrdinalIgnoreCase)) { errors.Add(new PaymentError(ErrorCode.InvalidTransaction, "Capture does not support this type of transaction")); } captureRequest.AuthorizationApprovalCode = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.ApprovalCode); captureRequest.AuthorizationApprovedAmount = PaymentUtilities.GetPropertyDecimalValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.ApprovedAmount, errors, ErrorCode.InvalidRequest); captureRequest.AuthorizationCashbackAmount = PaymentUtilities.GetPropertyDecimalValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.CashBackAmount); captureRequest.AuthorizationProviderMessage = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.ProviderMessage); captureRequest.AuthorizationProviderTransactionId = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.ProviderTransactionId, errors, ErrorCode.InvalidRequest); captureRequest.AuthorizationResponseCode = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.ResponseCode); captureRequest.AuthorizationResult = PaymentUtilities.GetPropertyStringValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.AuthorizationResult, errors, ErrorCode.InvalidRequest); captureRequest.AuthorizationTransactionDateTime = PaymentUtilities.GetPropertyDateTimeValue( authorizationHashtable, GenericNamespace.AuthorizationResponse, AuthorizationResponseProperties.TransactionDateTime); if (errors.Count > 0) { throw new SampleException(errors); } return(captureRequest); }