blob: 7b3556627d025fcb33d6a7fe8cad85a07c79311b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// TargetedManagedAppPolicyAssignment The type for deployment of groups or apps.
type TargetedManagedAppPolicyAssignment struct {
// Entity is the base model of TargetedManagedAppPolicyAssignment
Entity
// Target Identifier for deployment to a group or app
Target *DeviceAndAppManagementAssignmentTarget `json:"target,omitempty"`
// Source Type of resource used for deployment to a group, direct or parcel/policySet
Source *DeviceAndAppManagementAssignmentSource `json:"source,omitempty"`
// SourceID Identifier for resource used for deployment to a group
SourceID *string `json:"sourceId,omitempty"`
}
|