Class: RefundService

RefundService

new RefundService()

Creates a new RefundService. Generally you should never create a PAYMILL service on your own. Instead use the exported "refunds". To refund transactions, use the transaction service.
Source:

Methods

detail(obj, cb) → {Promise}

Get a Refund.
Parameters:
Name Type Argument Description
obj string | Refund a client object or its id. note, if you set a client object it will be updated, no new object will be created.
cb Object <optional>
a callback.
Source:
Returns:
a promise, which will be fulfilled with a Refund or rejected with a PMError.
Type
Promise

list(count, offset, filter, order, cb) → {Promise}

List refunds.
Parameters:
Name Type Argument Description
count string | number <optional>
limit of objects to be listed. use for pagination.
offset string | number <optional>
offset. use for pagination.
filter Refund.Filter | null <optional>
a list filter or null.
order Refund.Order | null <optional>
a list order or null.
cb Object <optional>
a callback.
Source:
Returns:
a promise, which will be fulfilled with a PayMillObjectList or rejected with a PMError.
Type
Promise