mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 14:30:26 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
30 lines
1.3 KiB
Go
30 lines
1.3 KiB
Go
// 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"`
|
|
}
|