class Ticketfly::Org

Attributes

id[RW]
json[RW]
name[RW]

Public Class Methods

build(json) click to toggle source
# File lib/ticketfly.rb, line 7
def self.build(json)
  org = Org.new
  org.id = json['id']
  org.name = json['name']
  org.json = json
  org
end