@builton/core-sdk
Version:
Builton JavaScript SDK.
39 lines (33 loc) • 883 B
JavaScript
const Component = require('./_objects');
const Payment = require('./payment');
const {
get,
refresh,
update,
} = require('./_methods');
class Subscription extends Component {
constructor(request, props) {
super(request, props, [get, refresh, update]);
this.apiPath = 'subscriptions';
}
getPayments({ urlParams, json } = {}, done) {
return this.query({
type: 'get',
resource: 'payments',
urlParams,
json,
ResConstructor: Payment,
}, done);
}
start(body, { urlParams, json = false } = {}, done) {
return this.query({
type: 'post', id: this.id, resource: 'start', body, urlParams, json,
}, done);
}
stop(body, { urlParams, json = false } = {}, done) {
return this.query({
type: 'post', id: this.id, resource: 'stop', body, urlParams, json,
}, done);
}
}
module.exports = Subscription;