Class: Sourcescrub::Models::Company

Inherits:
Entity
  • Object
show all
Defined in:
lib/sourcescrub/models/company.rb

Overview

Company

Constant Summary collapse

ENDPOINT =
'companies'

Instance Method Summary collapse

Methods inherited from Entity

#as_json, #fields, #parse_response

Methods included from Utils::Response

dynamic_attributes

Instance Method Details

#field_idsObject

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