Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.68 KB

File metadata and controls

34 lines (25 loc) · 1.68 KB

DeviceAssuranceWindowsPlatform

Properties

Name Type Description Notes
disk_encryption_type DeviceAssuranceAndroidPlatformAllOfDiskEncryptionType [optional]
jailbreak bool [optional]
os_version OSVersion [optional]
screen_lock_type DeviceAssuranceAndroidPlatformAllOfScreenLockType [optional]
secure_hardware_present bool [optional]
third_party_signal_providers DeviceAssuranceWindowsPlatformAllOfThirdPartySignalProviders [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]