class Evernote::EDAM::Type::Tag

Public Instance Methods

parent() click to toggle source

Returns the tag that holds this tag within the tag organizational hierarchy.

@return [Evernote::EDAM::Type::Tag]

# File lib/evernote/edam/type/tag.rb, line 9
def parent
  @parent ||= note_store.getTag(parentGuid) if parentGuid
end