Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.46 KB

File metadata and controls

31 lines (22 loc) · 1.46 KB

CustomAAGUIDUpdateRequestObject

Properties

Name Type Description Notes
attestation_root_certificates List[AttestationRootCertificatesRequestInner] Contains the certificate and information about it [optional]
authenticator_characteristics AAGUIDAuthenticatorCharacteristics [optional]
name str The product name associated with this AAGUID. [optional]

Example

from okta.models.custom_aaguid_update_request_object import CustomAAGUIDUpdateRequestObject

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

# convert the object into a dict
custom_aaguid_update_request_object_dict = custom_aaguid_update_request_object_instance.to_dict()
# create an instance of CustomAAGUIDUpdateRequestObject from a dict
custom_aaguid_update_request_object_from_dict = CustomAAGUIDUpdateRequestObject.from_dict(custom_aaguid_update_request_object_dict)

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