diff options
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/UserAccountModel.go')
-rw-r--r-- | vendor/github.com/matterbridge/msgraph.go/beta/UserAccountModel.go | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/UserAccountModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserAccountModel.go new file mode 100644 index 00000000..660b0756 --- /dev/null +++ b/vendor/github.com/matterbridge/msgraph.go/beta/UserAccountModel.go @@ -0,0 +1,23 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +import "time" + +// UserAccount undocumented +type UserAccount struct { + // Object is the base model of UserAccount + Object + // DisplayName undocumented + DisplayName *string `json:"displayName,omitempty"` + // LastSeenDateTime undocumented + LastSeenDateTime *time.Time `json:"lastSeenDateTime,omitempty"` + // RiskScore undocumented + RiskScore *string `json:"riskScore,omitempty"` + // Service undocumented + Service *string `json:"service,omitempty"` + // SigninName undocumented + SigninName *string `json:"signinName,omitempty"` + // Status undocumented + Status *AccountStatus `json:"status,omitempty"` +} |