class Virgil::SDK::HighLevel::VirgilIdentity::VerificationOptions
Attributes
count_to_live[R]
time_to_live
is used to limit the lifetime of the token in seconds (maximum value is 60 * 60 * 24 * 365 = 1 year). Default value is 3600.
count_to_live
parameter is used to restrict the number of validation token usages (maximum value is 100).
time_to_live[R]
time_to_live
is used to limit the lifetime of the token in seconds (maximum value is 60 * 60 * 24 * 365 = 1 year). Default value is 3600.
count_to_live
parameter is used to restrict the number of validation token usages (maximum value is 100).
Public Class Methods
new(options = {})
click to toggle source
# File lib/virgil/sdk/high_level/virgil_identity/verification_options.rb, line 47 def initialize(options = {}) @time_to_live = options[:time_to_live] || 3600 @count_to_live = options[:count_to_live] || 12 end