Sha256: 2738bc7ba5be0d29801702501bb0af07ff4195e75db10eb1cead41845d5980bc

Contents?: true

Size: 856 Bytes

Versions: 4

Compression:

Stored size: 856 Bytes

Contents

# encoding: utf-8

# https://api.crunchbase.com/v/2/organization/facebook/competitors

module Crunchbase
  class Competitor < CBEntity
    
    RESOURCE_LIST = 'competitors'
    
    attr_reader :type_name, :name, :last_name, :path, :permalink, :title, :started_on, :ended_on, 
                :created_at, :updated_at

    def initialize(json)
      @type_name    = json['type']
      @name         = (json['name'] || (json['first_name'].to_s + ' ' + json['last_name'].to_s))
      @path         = json['path']
      @permalink    = (json['permalink'] || (json['path'] && json['path'].gsub('organization/', '')))
      @title        = json['title']
      @started_on   = json['started_on']
      @ended_on     = json['ended_on']
      @created_at   = Time.at(json['created_at']).utc
      @updated_at   = Time.at(json['updated_at']).utc
    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
crunchbase_v2-1.1.2 lib/crunchbase/competitor.rb
crunchbase_v2-1.1.1 lib/crunchbase/competitor.rb
crunchbase_v2-1.1.0 lib/crunchbase/competitor.rb
crunchbase_v2-1.0.0 lib/crunchbase/competitor.rb