@zohocrm/typescript-sdk-2.1
Version:
TypeScript SDK for Zoho CRM
17 lines (16 loc) • 464 B
TypeScript
/**
* This class represents the Zoho CRM User.
*/
export declare class UserSignature {
private email;
/**
* Creates an UserSignature class instance with the specified user email.
* @param {string} email - A String containing the CRM user email.
*/
constructor(email: string);
/**
* This is a getter method to get user email.
* @returns {string} A String representing the CRM user email.
*/
getEmail(): string;
}