github.com/Finnhub-Stock-API/finnhub-go@v1.2.1/model_news_sentiment.go (about)

     1  /*
     2   * Finnhub API
     3   *
     4   * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
     5   *
     6   * API version: 1.0.0
     7   * Generated by: OpenAPI Generator (https://openapi-generator.tech)
     8   */
     9  
    10  package finnhub
    11  // NewsSentiment struct for NewsSentiment
    12  type NewsSentiment struct {
    13  	Buzz CompanyNewsStatistics `json:"buzz,omitempty"`
    14  	// News score.
    15  	CompanyNewsScore float32 `json:"companyNewsScore,omitempty"`
    16  	// Sector average bullish percent.
    17  	SectorAverageBullishPercent float32 `json:"sectorAverageBullishPercent,omitempty"`
    18  	// Sectore average score.
    19  	SectorAverageNewsScore float32 `json:"sectorAverageNewsScore,omitempty"`
    20  	Sentiment Sentiment `json:"sentiment,omitempty"`
    21  	// Requested symbol.
    22  	Symbol string `json:"symbol,omitempty"`
    23  }