Sha256: 79c72ae650f22431c3c4f07771ba546771a69d7da478ab228d9e9bd75ffb48c2
Contents?: true
Size: 548 Bytes
Versions: 16
Compression:
Stored size: 548 Bytes
Contents
# frozen_string_literal: true module Crunchbase # Get the Entities data from API module Models # Get the person data from API class CategoryGroup < Entity RESOURCE_LIST = 'category_groups' def field_ids %w[ categories created_at entity_def_id identifier rank updated_at ] + basis_fields end def basis_fields %w[ uuid name ] end def full_cards %w[] end end end end
Version data entries
16 entries across 16 versions & 1 rubygems