コード例 #1
0
        public void CreditReverse()
        {
            var response = card.Reverse(15m)
                           .WithAllowDuplicates(true)
                           .Execute();

            Assert.IsNotNull(response);
            Assert.AreEqual("00", response.ResponseCode);
        }