Method: NPR::Entity::Organization#initialize

Defined in:
lib/npr/entity/organization.rb

#initialize(json) ⇒ Organization

Returns a new instance of Organization.



10
11
12
13
14
15
# File 'lib/npr/entity/organization.rb', line 10

def initialize(json)
  extract_shallow_attributes(json)

  @orgId   = json["orgId"].to_i
  @orgAbbr = json["orgAbbr"]
end