Sha256: 90793316543f57fc556d93ae0e6246d3b7ac8564a42335eb7b548ee5b375db53
Contents?: true
Size: 600 Bytes
Versions: 12
Compression:
Stored size: 600 Bytes
Contents
# frozen_string_literal: true module Crunchbase # Get the Entities data from API module Models # Get the person data from API class Address < Entity RESOURCE_LIST = 'addresses' def field_ids %w[ created_at entity_def_id updated_at ] + basis_fields end def basis_fields %w[ uuid name postal_code street_1 street_2 identifier location_identifiers ] end def full_cards %w[ ] end end end end
Version data entries
12 entries across 12 versions & 1 rubygems