mirror of
https://github.com/donl/plivo-node.git
synced 2026-06-05 14:22:27 -06:00
test powerpack
This commit is contained in:
parent
470433a784
commit
aa8e032f4b
1 changed files with 17 additions and 0 deletions
|
|
@ -41,6 +41,22 @@ export class CreatePowerpackResponse {
|
|||
}
|
||||
}
|
||||
|
||||
export class RetrievePowerpack {
|
||||
constructor(params) {
|
||||
params = params || {};
|
||||
this.apiId = params.apiId;
|
||||
this.applicationId = params.applicationId;
|
||||
this.applicationType = params.applicationType;
|
||||
this.createdOn = params.createdOn;
|
||||
this.localConnect = params.localConnect;
|
||||
this.name = params.name;
|
||||
this.numberPool = params.numberPool;
|
||||
this.numberPriority = params.numberPriority;
|
||||
this.stickySender = params.stickySender;
|
||||
this.uuid = params.uuid;
|
||||
}
|
||||
}
|
||||
|
||||
export class UpdatePowerpackResponse {
|
||||
constructor(params) {
|
||||
params = params || {};
|
||||
|
|
@ -721,6 +737,7 @@ export class PowerpackInterface extends PlivoResourceInterface {
|
|||
});
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* create Powerpack
|
||||
* @method
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue