Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.44 KB

File metadata and controls

32 lines (23 loc) · 1.44 KB

AuthenticatorMethodTotpAllOfSettings

Properties

Name Type Description Notes
time_interval_in_seconds int Time interval for TOTP in seconds [optional]
encoding OtpTotpEncoding [optional]
algorithm OtpTotpAlgorithm [optional]
pass_code_length int Number of digits in an OTP value [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]