@zohocrm/nodejs-sdk-2.0
Version:
Node JS SDK for Zoho CRM
24 lines (21 loc) • 604 B
JavaScript
/**
* This class verifies and sets token to APIHTTPConnector instance.
*/
class Token {
/**
* This method is to set authentication token to APIHTTPConnector instance.
* @param {APIHTTPConnector} urlConnection - A APIHTTPConnector class instance.
* @throws {SDKException}
*/
authenticate(urlConnection) { }
/**
* The method to remove the current token from the Store.
* @returns {Boolean} - A Boolean value representing the removed status.
* @throws {SDKException}
*/
remove() { }
}
module.exports = {
MasterModel: Token,
Token: Token
}