UNPKG
kod-temp
Version:
latest (0.0.0)
0.0.0
Workano Communications SDK
kod-temp
/
dist
/
esm
/
lib
/
domain
/
MeetingStatus.js
15 lines
(14 loc)
•
341 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
default
class
MeetingStatus
{
type
; full;
constructor
(
{ full, } = {}
) {
this
.
full
= full;
// Useful to compare instead of instanceof with minified code
this
.
type
=
'MeetingStatus'
; }
static
parse
(
plain
) {
return
new
MeetingStatus
({
full
: plain.
full
, }); } }