| 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] |
from okta.models.device_assurance_android_platform import DeviceAssuranceAndroidPlatform
# TODO update the JSON string below
json = "{}"
# create an instance of DeviceAssuranceAndroidPlatform from a JSON string
device_assurance_android_platform_instance = DeviceAssuranceAndroidPlatform.from_json(json)
# print the JSON string representation of the object
print(DeviceAssuranceAndroidPlatform.to_json())
# convert the object into a dict
device_assurance_android_platform_dict = device_assurance_android_platform_instance.to_dict()
# create an instance of DeviceAssuranceAndroidPlatform from a dict
device_assurance_android_platform_from_dict = DeviceAssuranceAndroidPlatform.from_dict(device_assurance_android_platform_dict)