blob: c87ba7f402ac570a4b03b7f44ce1e4ce381d6d9c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// AndroidDeviceComplianceLocalActionLockDeviceWithPasscode Local Action Lock Device with Passcode Configuration
type AndroidDeviceComplianceLocalActionLockDeviceWithPasscode struct {
// AndroidDeviceComplianceLocalActionBase is the base model of AndroidDeviceComplianceLocalActionLockDeviceWithPasscode
AndroidDeviceComplianceLocalActionBase
// Passcode Passcode to reset to Android device. This property is read-only.
Passcode *string `json:"passcode,omitempty"`
// PasscodeSignInFailureCountBeforeWipe Number of sign in failures before wiping device, the value can be 4-11. Valid values 4 to 11
PasscodeSignInFailureCountBeforeWipe *int `json:"passcodeSignInFailureCountBeforeWipe,omitempty"`
}
|