forked from Finnhub-Stock-API/finnhub-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_recommendation_trend.go
27 lines (26 loc) · 983 Bytes
/
model_recommendation_trend.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* Finnhub API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* API version: 1.0.0
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package finnhub
// RecommendationTrend struct for RecommendationTrend
type RecommendationTrend struct {
// Company symbol.
Symbol string `json:"symbol,omitempty"`
// Number of recommendations that fall into the Buy category
Buy int64 `json:"buy,omitempty"`
// Number of recommendations that fall into the Hold category
Hold int64 `json:"hold,omitempty"`
// Updated period
Period string `json:"period,omitempty"`
// Number of recommendations that fall into the Sell category
Sell int64 `json:"sell,omitempty"`
// Number of recommendations that fall into the Strong Buy category
StrongBuy int64 `json:"strongBuy,omitempty"`
// Number of recommendations that fall into the Strong Sell category
StrongSell int64 `json:"strongSell,omitempty"`
}