class Evernote::EDAM::NoteStore::NoteMetadata

Public Instance Methods

tags() click to toggle source

Returns the tags that are applied to this note.

@return [Array<Evernote::EDAM::Type::Tag>]

# File lib/evernote/edam/note_store/note_metadata.rb, line 9
def tags
  @tags ||= (tagGuids || []).map{|guid| note_store.getTag(guid)}
end