xcoobee-sdk
Version:
The XcooBee SDK is a facility to abstract lower level calls and implement standard behaviors. The XcooBee team is providing this to improve the speed of implementation and show the best practices while interacting with XcooBee.
28 lines (24 loc) • 463 B
JavaScript
const BREACH = 'breach';
const BROADCAST = 'broadcast';
const COMPLAINT = 'complaint';
const CONSENT = 'consent';
const DATA_REQUEST = 'data_request';
const TICKET = 'ticket';
const values = Object.freeze([
BREACH,
BROADCAST,
COMPLAINT,
CONSENT,
DATA_REQUEST,
TICKET,
]);
const NoteTypes = Object.freeze({
BREACH,
BROADCAST,
COMPLAINT,
CONSENT,
DATA_REQUEST,
TICKET,
values,
});
module.exports = NoteTypes;