github.com/Finnhub-Stock-API/finnhub-go@v1.2.1/model_earning_estimate.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  // EarningEstimate struct for EarningEstimate
    12  type EarningEstimate struct {
    13  	// Average EPS estimates.
    14  	EpsAvg float32 `json:"epsAvg,omitempty"`
    15  	// Highest estimate.
    16  	EpsHigh float32 `json:"epsHigh,omitempty"`
    17  	// Lowest estimate.
    18  	EpsLow float32 `json:"epsLow,omitempty"`
    19  	// Number of Analysts.
    20  	NumberAnalysts int64 `json:"numberAnalysts,omitempty"`
    21  	// Period.
    22  	Period string `json:"period,omitempty"`
    23  }