github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelRestricted.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // RestrictedAppsViolation Violation of restricted apps configuration profile per device per user
     6  type RestrictedAppsViolation struct {
     7  	// Entity is the base model of RestrictedAppsViolation
     8  	Entity
     9  	// UserID User unique identifier, must be Guid
    10  	UserID *string `json:"userId,omitempty"`
    11  	// UserName User name
    12  	UserName *string `json:"userName,omitempty"`
    13  	// ManagedDeviceID Managed device unique identifier, must be Guid
    14  	ManagedDeviceID *string `json:"managedDeviceId,omitempty"`
    15  	// DeviceName Device name
    16  	DeviceName *string `json:"deviceName,omitempty"`
    17  	// DeviceConfigurationID Device configuration profile unique identifier, must be Guid
    18  	DeviceConfigurationID *string `json:"deviceConfigurationId,omitempty"`
    19  	// DeviceConfigurationName Device configuration profile name
    20  	DeviceConfigurationName *string `json:"deviceConfigurationName,omitempty"`
    21  	// PlatformType Platform type
    22  	PlatformType *PolicyPlatformType `json:"platformType,omitempty"`
    23  	// RestrictedAppsState Restricted apps state
    24  	RestrictedAppsState *RestrictedAppsState `json:"restrictedAppsState,omitempty"`
    25  	// RestrictedApps List of violated restricted apps
    26  	RestrictedApps []ManagedDeviceReportedApp `json:"restrictedApps,omitempty"`
    27  }
    28  
    29  // RestrictedSignIn undocumented
    30  type RestrictedSignIn struct {
    31  	// SignIn is the base model of RestrictedSignIn
    32  	SignIn
    33  	// TargetTenantID undocumented
    34  	TargetTenantID *UUID `json:"targetTenantId,omitempty"`
    35  }