Class: Cufinder::FclCompany

Inherits:
Object
  • Object
show all
Defined in:
lib/cufinder_ruby/types.rb

Overview

FCL Company

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = {}) ⇒ FclCompany

Returns a new instance of FclCompany.



247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# File 'lib/cufinder_ruby/types.rb', line 247

def initialize(data = {})
  @name = data["name"]
  @website = data["website"]
  @employee_count = data["employee_count"]
  @size = data["size"]
  @industry = data["industry"]
  @description = data["description"]
  @linkedin_url = data["linkedin_url"]
  @domain = data["domain"]
  @country = data["country"]
  @state = data["state"]
  @city = data["city"]
  @address = data["address"]
  @founded_year = data["founded_year"]
  @logo_url = data["logo_url"]
  @followers_count = data["followers_count"]
end

Instance Attribute Details

#addressObject

Returns the value of attribute address.



243
244
245
# File 'lib/cufinder_ruby/types.rb', line 243

def address
  @address
end

#cityObject

Returns the value of attribute city.



243
244
245
# File 'lib/cufinder_ruby/types.rb', line 243

def city
  @city
end

#countryObject

Returns the value of attribute country.



243
244
245
# File 'lib/cufinder_ruby/types.rb', line 243

def country
  @country
end

#descriptionObject

Returns the value of attribute description.



243
244
245
# File 'lib/cufinder_ruby/types.rb', line 243

def description
  @description
end

#domainObject

Returns the value of attribute domain.



243
244
245
# File 'lib/cufinder_ruby/types.rb', line 243

def domain
  @domain
end

#employee_countObject

Returns the value of attribute employee_count.



243
244
245
# File 'lib/cufinder_ruby/types.rb', line 243

def employee_count
  @employee_count
end

#followers_countObject

Returns the value of attribute followers_count.



243
244
245
# File 'lib/cufinder_ruby/types.rb', line 243

def followers_count
  @followers_count
end

#founded_yearObject

Returns the value of attribute founded_year.



243
244
245
# File 'lib/cufinder_ruby/types.rb', line 243

def founded_year
  @founded_year
end

#industryObject

Returns the value of attribute industry.



243
244
245
# File 'lib/cufinder_ruby/types.rb', line 243

def industry
  @industry
end

#linkedin_urlObject

Returns the value of attribute linkedin_url.



243
244
245
# File 'lib/cufinder_ruby/types.rb', line 243

def linkedin_url
  @linkedin_url
end

#logo_urlObject

Returns the value of attribute logo_url.



243
244
245
# File 'lib/cufinder_ruby/types.rb', line 243

def logo_url
  @logo_url
end

#nameObject

Returns the value of attribute name.



243
244
245
# File 'lib/cufinder_ruby/types.rb', line 243

def name
  @name
end

#sizeObject

Returns the value of attribute size.



243
244
245
# File 'lib/cufinder_ruby/types.rb', line 243

def size
  @size
end

#stateObject

Returns the value of attribute state.



243
244
245
# File 'lib/cufinder_ruby/types.rb', line 243

def state
  @state
end

#websiteObject

Returns the value of attribute website.



243
244
245
# File 'lib/cufinder_ruby/types.rb', line 243

def website
  @website
end