blob: 6c31a390f57dfa3d9e7f64d20e567664a5e6c11c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// UserSecurityProfile undocumented
type UserSecurityProfile struct {
// Entity is the base model of UserSecurityProfile
Entity
// Accounts undocumented
Accounts []UserAccount `json:"accounts,omitempty"`
// AzureSubscriptionID undocumented
AzureSubscriptionID *string `json:"azureSubscriptionId,omitempty"`
// AzureTenantID undocumented
AzureTenantID *string `json:"azureTenantId,omitempty"`
// CreatedDateTime undocumented
CreatedDateTime *time.Time `json:"createdDateTime,omitempty"`
// DisplayName undocumented
DisplayName *string `json:"displayName,omitempty"`
// LastModifiedDateTime undocumented
LastModifiedDateTime *time.Time `json:"lastModifiedDateTime,omitempty"`
// RiskScore undocumented
RiskScore *string `json:"riskScore,omitempty"`
// Tags undocumented
Tags []string `json:"tags,omitempty"`
// UserPrincipalName undocumented
UserPrincipalName *string `json:"userPrincipalName,omitempty"`
// VendorInformation undocumented
VendorInformation *SecurityVendorInformation `json:"vendorInformation,omitempty"`
}
|