# TalonOne::TwoFAConfig ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **enabled** | **Boolean** | An indication of whether two-factor authentication is enabled for the account. | **require_every_sign_in** | **Boolean** | Can be `true` or `false`. - `true`: Two-factor authentication is required each time a user signs in to their Talon.One account. - `false`: Two-factor authentication is only required when a user signs in to their Talon.One account on a new device, and every 30 days after that. | [optional] ## Code Sample ```ruby require 'TalonOne' instance = TalonOne::TwoFAConfig.new(enabled: true, require_every_sign_in: true) ```