forked from jshiffer/matterbridge
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
24 lines
1.1 KiB
Go
24 lines
1.1 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
import "time"
|
|
|
|
// WindowsInformationProtectionWipeAction Represents wipe requests issued by tenant admin for Bring-Your-Own-Device(BYOD) Windows devices.
|
|
type WindowsInformationProtectionWipeAction struct {
|
|
// Entity is the base model of WindowsInformationProtectionWipeAction
|
|
Entity
|
|
// Status Wipe action status.
|
|
Status *ActionState `json:"status,omitempty"`
|
|
// TargetedUserID The UserId being targeted by this wipe action.
|
|
TargetedUserID *string `json:"targetedUserId,omitempty"`
|
|
// TargetedDeviceRegistrationID The DeviceRegistrationId being targeted by this wipe action.
|
|
TargetedDeviceRegistrationID *string `json:"targetedDeviceRegistrationId,omitempty"`
|
|
// TargetedDeviceName Targeted device name.
|
|
TargetedDeviceName *string `json:"targetedDeviceName,omitempty"`
|
|
// TargetedDeviceMacAddress Targeted device Mac address.
|
|
TargetedDeviceMacAddress *string `json:"targetedDeviceMacAddress,omitempty"`
|
|
// LastCheckInDateTime Last checkin time of the device that was targeted by this wipe action.
|
|
LastCheckInDateTime *time.Time `json:"lastCheckInDateTime,omitempty"`
|
|
}
|