iyzipay
Version:
iyzipay api node.js client
18 lines (14 loc) • 369 B
JavaScript
;
var IyzipayResource = require('../IyzipayResource');
function RefundV2() {
this._config = arguments[0];
this._api = {
create: {
path: '/v2/payment/refund',
method: 'POST',
requestModel: 'CreateRefundV2Request'
}
};
}
RefundV2.prototype = new IyzipayResource();
module.exports = RefundV2;