* 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>
This commit is contained in:
Ricardo Espinoza
2020-09-06 15:27:24 -04:00
committed by GitHub
parent c42ae57dc1
commit 5a0e356ab6
3 changed files with 179 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
export interface IUser {
Alias?: string;
Department?: string;
Division?: string;
Email?: string;
IsActive?: boolean;
MobilePhone?: string;
Title?: string;
Username?: string;
}