-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for employee org data #99
Add support for employee org data #99
Conversation
msgraph/models.go
Outdated
@@ -1144,6 +1144,7 @@ type User struct { | |||
UsageLocation *StringNullWhenEmpty `json:"usageLocation,omitempty"` | |||
UserPrincipalName *string `json:"userPrincipalName,omitempty"` | |||
UserType *string `json:"userType,omitempty"` | |||
EmployeeOrgData *EmployeeOrgData `json:"employeeOrgData,omitempty"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @michaljirman! Could we move this up to maintain sorting of the field names?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
…amilton into feature/employee-org-data
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, LGTM!
Will merge later today after 0.28.1 is cut.
* add support for employee org data * code refactor
Add support for employee org data to the User model