class EvernoteOAuth::SharedNoteStore::Store

Attributes

token[R]

Public Class Methods

new(options={}) click to toggle source
# File lib/evernote_oauth/shared_note_store.rb, line 22
def initialize(options={})
  @linked_notebook = options[:linked_notebook]
  @client = options[:client]
  @token = authenticateToSharedNotebook(@linked_notebook.shareKey,
                                        options[:token]).authenticationToken
end