UNPKG

@zohocrm/typescript-sdk-2.1

Version:
17 lines (16 loc) 464 B
/** * 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; }