Sha256: c798d82a443d640bfe01c2bc41701549e30cfd78c2761d8c09706a64984424df
Contents?: true
Size: 883 Bytes
Versions: 14
Compression:
Stored size: 883 Bytes
Contents
# frozen_string_literal: true module Crunchbase # Get the Entities data from API module Models # Get the person data from API class Ipo < Entity RESOURCE_LIST = 'ipos' def field_ids %w[ created_at entity_def_id image_id rank rank_ipo shares_outstanding shares_sold stock_exchange_symbol stock_full_symbol updated_at ] + basis_fields end def basis_fields %w[ uuid permalink identifier amount_raised share_price stock_symbol valuation delisted_on went_public_on short_description ] end def full_cards %w[ organization press_references ] end end end end
Version data entries
14 entries across 14 versions & 1 rubygems