| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import Resource from 'resource';
import Payment from 'models/payment';
/**
* The `payments` resource
* @static {string} resource
* @static {Object} model
* @since 1.0.0
*/
export default class Payments extends Resource {
static resource = 'payments';
static model = Payment;
}
|