Files
jambonz-node/lib/rest/applications.js
2021-02-22 18:04:06 -05:00

16 lines
356 B
JavaScript

const RestEntity = require('./rest-entity');
class Applications extends RestEntity {
constructor(accountSid, apiKey, opts) {
super('Applications', accountSid, apiKey, opts);
this.enabledOperations = [
RestEntity.create,
RestEntity.retrieve,
RestEntity.list,
RestEntity.delete
];
}
}
module.exports = Applications;