blob: cf66ff07f5680e3da41cb4cded2036c874f30ec2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// ManagedAppPolicyDeploymentSummary The ManagedAppEntity is the base entity type for all other entity types under app management workflow.
type ManagedAppPolicyDeploymentSummary struct {
// Entity is the base model of ManagedAppPolicyDeploymentSummary
Entity
// DisplayName undocumented
DisplayName *string `json:"displayName,omitempty"`
// ConfigurationDeployedUserCount undocumented
ConfigurationDeployedUserCount *int `json:"configurationDeployedUserCount,omitempty"`
// LastRefreshTime undocumented
LastRefreshTime *time.Time `json:"lastRefreshTime,omitempty"`
// ConfigurationDeploymentSummaryPerApp undocumented
ConfigurationDeploymentSummaryPerApp []ManagedAppPolicyDeploymentSummaryPerApp `json:"configurationDeploymentSummaryPerApp,omitempty"`
// Version Version of the entity.
Version *string `json:"version,omitempty"`
}
|