//Invoke the Refund method
 public RefundResponse RefundAction(string amazonCaptureID, string refundAmount)
 {
     return(RefundSample.RefundAction(_service, this._propertiesCollection, this._rng, amazonCaptureID, refundAmount, null, null));
 }
 //Invoke the Refund method with Provider Credit Reversal
 public RefundResponse RefundActionWithProviderCreditReversal(string amazonCaptureID, string refundAmount, string providerId, string creditReversalAmountString)
 {
     return(RefundSample.RefundAction(this._service, this._propertiesCollection, this._rng, amazonCaptureID, refundAmount, providerId, creditReversalAmountString));
 }