BalancedSharp.Debit.Refund C# (CSharp) Method

Refund() public method

public Refund ( int amount, string description = null ) : Status
amount int
description string
return Status
        public Status<Refund> Refund(int amount, string description = null)
        {
            return this.Service.Refund.Create(RefundsUri, amount, description);
        }