Sha256: 1f90eacf9c6168f3aab72f3252dc8e7393c93d8bcd9db22fa0089c4b287c070e
Contents?: true
Size: 743 Bytes
Versions: 12
Compression:
Stored size: 743 Bytes
Contents
# frozen_string_literal: true module Crunchbase # Get the Entities data from API module Models # Get the Principal data from API class Job < Entity RESOURCE_LIST = 'jobs' def field_ids %w[ created_at employee_featured_order entity_def_id identifier short_description updated_at ] + basis_fields end def basis_fields %w[ uuid name title started_on ended_on permalink job_type is_current organization_identifier person_identifier ] end def full_cards %w[ ] end end end end
Version data entries
12 entries across 12 versions & 1 rubygems