mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
* add sfdc user node interface * add sfdc user node description for get method * sfdc user node getall * sfdc user node support limit * sfdc user node support options * sfdc user node update user operations * sfdc add usr node query logic * ⚡ Small improvements Co-authored-by: YErii <yeriime@outlook.com>
11 lines
192 B
TypeScript
11 lines
192 B
TypeScript
export interface IUser {
|
|
Alias?: string;
|
|
Department?: string;
|
|
Division?: string;
|
|
Email?: string;
|
|
IsActive?: boolean;
|
|
MobilePhone?: string;
|
|
Title?: string;
|
|
Username?: string;
|
|
}
|