Skip to content

Latest commit

 

History

History
50 lines (44 loc) · 1.62 KB

File metadata and controls

50 lines (44 loc) · 1.62 KB

Unifapi::LinkedinCompany

Properties

Name Type Description Notes
id String URL slug (LinkedIn's `universal_name`). Use this for every /linkedin/companies/{id}/... endpoint.
company_id String Numeric LinkedIn-internal id. Exposed because LinkedIn pages and ad-library URLs reference it; not needed for any /linkedin/* call.
name String
description String
website_url String
linkedin_url String
is_verified Boolean
is_active Boolean
follower_count Integer
employee_count Integer
employee_count_range LinkedinEmployeeCountRange
industries Array<String>
specialities Array<String>
headquarters LinkedinHeadquarters
logo_url String
cover_image_url String
hashtags Array<LinkedinCompanyHashtagsInner>

Example

require 'unifapi'

instance = Unifapi::LinkedinCompany.new(
  id: null,
  company_id: null,
  name: null,
  description: null,
  website_url: null,
  linkedin_url: null,
  is_verified: null,
  is_active: null,
  follower_count: null,
  employee_count: null,
  employee_count_range: null,
  industries: null,
  specialities: null,
  headquarters: null,
  logo_url: null,
  cover_image_url: null,
  hashtags: null
)