UNPKG

yandex-kassa

Version:
17 lines (14 loc) 365 B
'use strict'; class Refund { constructor(instance, data) { Object.assign(this, data, { _instance: instance }); } reload() { return this._instance._getRefundInfo(this.id) .then(data => { Object.assign(this, data); return true; }); } } module.exports = Refund;