@figuro/chatwoot-sdk
Version:
SDK for JS/Typescript for Chatwoot.
19 lines (18 loc) • 409 B
TypeScript
export declare type user_create_update_payload = {
/**
* Name of the user
*/
name?: string;
/**
* Email of the user
*/
email?: string;
/**
* Password must contain uppercase, lowercase letters, number and a special character
*/
password?: string;
/**
* Custom attributes you want to associate with the user
*/
custom_attributes?: any;
};