UNPKG
@cxco/sdk-webhooks
Version:
latest (1.2.2)
next (1.1.3-0)
1.2.2
1.2.1
1.2.0
1.1.3-0
1.1.2
1.1.1
1.1.0
1.0.0
DigitalCX Webhook library
@cxco/sdk-webhooks
/
lib
/
context
/
ContextResponseModel.js
13 lines
(10 loc)
•
229 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
"use strict"
;
/** * Class to be returned in the outbound payload */
class
ContextResponseModel
{
constructor
(
data
) {
this
.
contextVariables
= data.
outboundContextVariables
; } }
module
.
exports
=
ContextResponseModel
;