@zohocrm/typescript-sdk-7.0
Version:
TypeScript SDK for Zoho CRM
24 lines (23 loc) • 759 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserSignature = void 0;
const zohocrmsdk_js_1 = require("../zohocrmsdk.js");
/**
* This class represents the Zoho CRM User.
*/
class UserSignature {
constructor(name) {
if (name == null) {
zohocrmsdk_js_1.Utility.assertNotNull(null, zohocrmsdk_js_1.Constants.MANDATORY_VALUE_ERROR, zohocrmsdk_js_1.Constants.MANDATORY_KEY_ERROR + " - " + zohocrmsdk_js_1.Constants.NAME).then(r => r);
}
this.name = name;
}
/**
* This is a getter method to get user email.
* @returns {string} A String representing the CRM user email.
*/
getName() {
return this.name;
}
}
exports.UserSignature = UserSignature;
;