Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 1.47 KB

Entity.md

File metadata and controls

35 lines (28 loc) · 1.47 KB

AylienNewsApi::Entity

Properties

Name Type Description Notes
id String The unique ID of the entity [optional]
links EntityLinks [optional]
stock_tickers Array<String> The stock tickers of the entity (might be empty) [optional]
types Array<String> An array of the entity types [optional]
overall_sentiment EntitySentiment [optional]
overall_prominence Float Describes how relevant an entity is to the article [optional]
overall_frequency Integer Amount of entity surface form mentions in the article [optional]
body EntityInText [optional]
title EntityInText [optional]
external_ids ExternalIds [optional]

Code Sample

require 'AylienNewsApi'

instance = AylienNewsApi::Entity.new(id: null,
                                 links: null,
                                 stock_tickers: null,
                                 types: null,
                                 overall_sentiment: null,
                                 overall_prominence: null,
                                 overall_frequency: null,
                                 body: null,
                                 title: null,
                                 external_ids: null)