class Echonest::Blog
Attributes
date_posted[RW]
name[RW]
summary[RW]
url[RW]
Public Class Methods
new(options = {})
click to toggle source
# File lib/echonest-ruby-api/blog.rb, line 5 def initialize(options = {}) @name = options[:name] @summary = options[:summary] @url = options[:url] @date_posted = options[:date_posted] end