summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementScriptRunSummaryModel.go
blob: 686c9574500799ef97a62e9aae9f93482367998b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

// DeviceManagementScriptRunSummary Contains properties for the run summary of a device management script.
type DeviceManagementScriptRunSummary struct {
	// Entity is the base model of DeviceManagementScriptRunSummary
	Entity
	// SuccessDeviceCount Success device count.
	SuccessDeviceCount *int `json:"successDeviceCount,omitempty"`
	// ErrorDeviceCount Error device count.
	ErrorDeviceCount *int `json:"errorDeviceCount,omitempty"`
	// SuccessUserCount Success user count.
	SuccessUserCount *int `json:"successUserCount,omitempty"`
	// ErrorUserCount Error user count.
	ErrorUserCount *int `json:"errorUserCount,omitempty"`
}