class WebmaniabrNfeRuby::Authenticate

Attributes

access_token[RW]
access_token_secret[RW]
consumer_key[RW]
consumer_secret[RW]

Public Class Methods

new(options = {}) click to toggle source
# File lib/webmaniabr_nfe_ruby/authenticate.rb, line 6
def initialize(options = {})
  self.consumer_key        = options[:consumer_key]
  self.consumer_secret     = options[:consumer_secret]
  self.access_token        = options[:access_token]
  self.access_token_secret = options[:access_token_secret]
end