| Name | Type | Description | Notes |
|---|---|---|---|
| algorithms | List[AuthenticatorMethodAlgorithm] | [optional] | |
| key_protection | PushMethodKeyProtection | [optional] | |
| transaction_types | List[AuthenticatorMethodTransactionType] | [optional] |
from okta.models.authenticator_method_push_all_of_settings import AuthenticatorMethodPushAllOfSettings
# TODO update the JSON string below
json = "{}"
# create an instance of AuthenticatorMethodPushAllOfSettings from a JSON string
authenticator_method_push_all_of_settings_instance = AuthenticatorMethodPushAllOfSettings.from_json(json)
# print the JSON string representation of the object
print(AuthenticatorMethodPushAllOfSettings.to_json())
# convert the object into a dict
authenticator_method_push_all_of_settings_dict = authenticator_method_push_all_of_settings_instance.to_dict()
# create an instance of AuthenticatorMethodPushAllOfSettings from a dict
authenticator_method_push_all_of_settings_from_dict = AuthenticatorMethodPushAllOfSettings.from_dict(authenticator_method_push_all_of_settings_dict)