| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import Resource from 'resource';
import Refund from 'models/refund';
/**
* The `refunds` resource
* @static {string} resource
* @static {Object} model
* @since 2.0.0
*/
export default class Refunds extends Resource {
static resource = 'refunds';
static model = Refund;
}
|