class PresenterProfile

Attributes

avatar[R]
bio[R]
company[R]
email[R]
location[R]
name[R]
shirt_size[R]
twitter[R]
url[R]

Public Class Methods

new(json_hash = {}) click to toggle source
# File lib/papercall/models/presenter_profile.rb, line 5
def initialize(json_hash = {})
  @name = json_hash[:name]
  @bio = json_hash[:bio]
  @twitter = json_hash[:twitter]
  @company = json_hash[:company]
  @url = json_hash[:url]
  @shirt_size = json_hash[:shirt_size]
  @email = json_hash[:email]
  @location = json_hash[:location]
  @avatar = json_hash[:avatar]
end