class Hatena::Bookmark::Restful::V1::Tag

Constants

PROPERTIES

@!attribute [r] tag

The name of tag
@return [String]

@!attribute [r] count

The number of bookmarks with the tag
@return [Integer]

@!attribute [r] modified_datetime

ISO 8601 representation of the last modified time
@return [String]

@!attribute [r] modified_epoch

UNIX epoch of the last modified time
@return [Integer]

Public Instance Methods

modified_at() click to toggle source

The last modified time @return [Time]

# File lib/hatena/bookmark/restful/v1/tag.rb, line 30
def modified_at
  Time.at(self.modified_epoch)
end