class KOSapiClient::Entity::Author
Attributes
name[R]
Public Class Methods
new(name)
click to toggle source
# File lib/kosapi_client/entity/author.rb, line 7 def initialize(name) @name = name end
parse(contents)
click to toggle source
# File lib/kosapi_client/entity/author.rb, line 11 def self.parse(contents) new(contents[:atom_name]) end