UNPKG

kod-temp

Version:

Workano Communications SDK

15 lines (14 loc) 341 B
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, }); } }