blob: 2443b150775e402583247bf2f64c734b2280e271 (
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// MacOsVppAppRevokeLicensesActionResult undocumented
type MacOsVppAppRevokeLicensesActionResult struct {
// Object is the base model of MacOsVppAppRevokeLicensesActionResult
Object
// UserID UserId associated with the action.
UserID *string `json:"userId,omitempty"`
// ManagedDeviceID DeviceId associated with the action.
ManagedDeviceID *string `json:"managedDeviceId,omitempty"`
// TotalLicensesCount A count of the number of licenses for which revoke was attempted.
TotalLicensesCount *int `json:"totalLicensesCount,omitempty"`
// FailedLicensesCount A count of the number of licenses for which revoke failed.
FailedLicensesCount *int `json:"failedLicensesCount,omitempty"`
// ActionFailureReason The reason for the revoke licenses action failure.
ActionFailureReason *VppTokenActionFailureReason `json:"actionFailureReason,omitempty"`
// ActionName Action name
ActionName *string `json:"actionName,omitempty"`
// ActionState State of the action
ActionState *ActionState `json:"actionState,omitempty"`
// StartDateTime Time the action was initiated
StartDateTime *time.Time `json:"startDateTime,omitempty"`
// LastUpdatedDateTime Time the action state was last updated
LastUpdatedDateTime *time.Time `json:"lastUpdatedDateTime,omitempty"`
}
|