Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.31 KB

File metadata and controls

32 lines (23 loc) · 1.31 KB

AuthenticatorMethodTotpAllOfSettings

Properties

Name Type Description Notes
time_interval_in_seconds int [optional]
encoding str [optional]
algorithm str [optional]
pass_code_length int [optional]

Example

from okta.models.authenticator_method_totp_all_of_settings import AuthenticatorMethodTotpAllOfSettings

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

# convert the object into a dict
authenticator_method_totp_all_of_settings_dict = authenticator_method_totp_all_of_settings_instance.to_dict()
# create an instance of AuthenticatorMethodTotpAllOfSettings from a dict
authenticator_method_totp_all_of_settings_from_dict = AuthenticatorMethodTotpAllOfSettings.from_dict(authenticator_method_totp_all_of_settings_dict)

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