nativescript-zendesk
Version:
A NativeScript module for integrating Zendesk
21 lines (18 loc) • 346 B
JavaScript
exports.account = {
appId: "",
url: "",
clientId: "",
ticketSubject: "",
loggingEnabled: false,
initialized: false,
anonymous: true,
locale: null
}
exports.user = {
id: "",
name: "",
email: "",
isInitalized: function(){
return (this.id !== "" && this.name !== "" && this.email !== "") ? true : false;
}
}