| Name | Type | Description | Notes |
|---|---|---|---|
| disk_encryption_type | DeviceAssuranceMacOSPlatformAllOfDiskEncryptionType | [optional] | |
| os_version | OSVersionFourComponents | [optional] | |
| os_version_constraints | List[OSVersionConstraint] | <x-lifecycle-container><x-lifecycle class="ea"></x-lifecycle></x-lifecycle-container>Specifies the Windows version requirements for the assurance policy. Each requirement must correspond to a different major version (Windows 11 or Windows 10). If a requirement isn't specified for a major version, then devices on that major version satisfy the condition. There are two types of OS requirements: * Static: A specific Windows version requirement that doesn't change until you update the policy. A static OS Windows requirement is specified with `majorVersionConstraint` and `minimum`. * Dynamic: A Windows version requirement that is relative to the latest major release and security patch. A dynamic OS Windows requirement is specified with `majorVersionConstraint` and `dynamicVersionRequirement`. > Note: Dynamic OS requirements are available only if the Dynamic OS version compliance self-service EA feature is enabled. The `osVersionConstraints` property is only supported for the Windows platform. You can't specify both `osVersion.minimum` and `osVersionConstraints` properties at the same time. | [optional] |
| screen_lock_type | DeviceAssuranceAndroidPlatformAllOfScreenLockType | [optional] | |
| secure_hardware_present | bool | [optional] | |
| third_party_signal_providers | DeviceAssuranceWindowsPlatformAllOfThirdPartySignalProviders | [optional] |
from okta.models.device_assurance_windows_platform import DeviceAssuranceWindowsPlatform
# TODO update the JSON string below
json = "{}"
# create an instance of DeviceAssuranceWindowsPlatform from a JSON string
device_assurance_windows_platform_instance = DeviceAssuranceWindowsPlatform.from_json(json)
# print the JSON string representation of the object
print(DeviceAssuranceWindowsPlatform.to_json())
# convert the object into a dict
device_assurance_windows_platform_dict = device_assurance_windows_platform_instance.to_dict()
# create an instance of DeviceAssuranceWindowsPlatform from a dict
device_assurance_windows_platform_from_dict = DeviceAssuranceWindowsPlatform.from_dict(device_assurance_windows_platform_dict)