mirror of
https://github.com/jambonz/jambonz-node.git
synced 2026-07-04 19:31:48 +00:00
17 lines
360 B
JavaScript
17 lines
360 B
JavaScript
const RestEntity = require('./rest-entity');
|
|
|
|
class Calls extends RestEntity {
|
|
constructor(accountSid, apiKey, opts) {
|
|
super('Calls', accountSid, apiKey, opts);
|
|
this.enabledOperations = [
|
|
RestEntity.create,
|
|
RestEntity.retrieve,
|
|
RestEntity.list,
|
|
RestEntity.update,
|
|
RestEntity.delete
|
|
];
|
|
}
|
|
}
|
|
|
|
module.exports = Calls;
|