class Tanker::VerificationOptions

Options that can be given when using a verification method

Public Class Methods

new(with_session_token: false) click to toggle source
Calls superclass method
# File lib/tanker/verification_options.rb, line 8
def initialize(with_session_token: false)
  super()

  self[:version] = 1
  self[:with_session_token] = with_session_token ? 1 : 0
end