Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.6 KB

File metadata and controls

32 lines (23 loc) · 1.6 KB

AAGUIDAuthenticatorCharacteristics

Contains additional properties about custom AAGUID.

Properties

Name Type Description Notes
fips_compliant bool Indicates whether the authenticator meets Federal Information Processing Standards (FIPS) compliance requirements [optional]
hardware_protected bool Indicates whether the authenticator stores the private key on a hardware component [optional]
platform_attached bool Indicates whether the custom AAGUID is built into the authenticator (`true`) or if it's a separate, external authenticator [optional]

Example

from okta.models.aaguid_authenticator_characteristics import AAGUIDAuthenticatorCharacteristics

# TODO update the JSON string below
json = "{}"
# create an instance of AAGUIDAuthenticatorCharacteristics from a JSON string
aaguid_authenticator_characteristics_instance = AAGUIDAuthenticatorCharacteristics.from_json(json)
# print the JSON string representation of the object
print(AAGUIDAuthenticatorCharacteristics.to_json())

# convert the object into a dict
aaguid_authenticator_characteristics_dict = aaguid_authenticator_characteristics_instance.to_dict()
# create an instance of AAGUIDAuthenticatorCharacteristics from a dict
aaguid_authenticator_characteristics_from_dict = AAGUIDAuthenticatorCharacteristics.from_dict(aaguid_authenticator_characteristics_dict)

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