Class: Sourcescrub::Models::Company
- Defined in:
- lib/sourcescrub/models/company.rb
Overview
Company
Constant Summary collapse
- ENDPOINT =
'companies'
Instance Method Summary collapse
-
#field_ids ⇒ Object
rubocop:disable Metrics/MethodLength.
Methods inherited from Entity
#as_json, #fields, #parse_response
Methods included from Utils::Response
Instance Method Details
#field_ids ⇒ Object
rubocop:disable Metrics/MethodLength
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/sourcescrub/models/company.rb', line 12 def field_ids %w[ id companyType name informalName website domain description foundingYear location city state postalCode country parentCompanyDomain phoneNumber specialties facebook twitter crunchbase linkedIn totalAmountInvested currentEmployeeCount threeMonthsGrowthRate sixMonthsGrowthRate nineMonthsGrowthRate twelveMonthsGrowthRate currentEmployeeRange currentJobOpenings growthIntent investors personalTags firmTags customScore industries modifiedDate endMarkets productsAndServices ] end |