Sha256: 6d91f016d4f784c055f2364fb29d8cc2397fc12f3b10811ee3a6322fa34343f3
Contents?: true
Size: 638 Bytes
Versions: 16
Compression:
Stored size: 638 Bytes
Contents
# frozen_string_literal: true module Crunchbase # Get the Entities data from API module Models # Get the person data from API class PressReference < Entity RESOURCE_LIST = 'press_references' def field_ids %w[ activity_entities created_at entity_def_id identifier thumbnail_url updated_at ] + basis_fields end def basis_fields %w[ uuid url title author posted_on publisher ] end def full_cards %w[] end end end end
Version data entries
16 entries across 16 versions & 1 rubygems