class Talk

Attributes

abstract[R]
audience_level[R]
description[R]
notes[R]
talk_format[R]
title[R]

Public Class Methods

new(json_hash) click to toggle source
# File lib/papercall/models/talk.rb, line 5
def initialize(json_hash)
  @title = json_hash[:title]
  @description = json_hash[:description]
  @notes = json_hash[:notes]
  @abstract = json_hash[:abstract]
  @audience_level = json_hash[:audience_level]
  @talk_format = json_hash[:talk_format]
end