github.com/Finnhub-Stock-API/finnhub-go@v1.2.1/model_earning_release.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  // EarningRelease struct for EarningRelease
    12  type EarningRelease struct {
    13  	// Symbol.
    14  	Symbol string `json:"symbol,omitempty"`
    15  	// Date.
    16  	Date string `json:"date,omitempty"`
    17  	// Indicates whether the earnings is announced before market open(<code>bmo</code>), after market close(<code>amc</code>), or during market hour(<code>dmh</code>).
    18  	Hour string `json:"hour,omitempty"`
    19  	// Earnings year.
    20  	Year int64 `json:"year,omitempty"`
    21  	// Earnings quarter.
    22  	Quarter int64 `json:"quarter,omitempty"`
    23  	// EPS estimate.
    24  	EpsEstimate float32 `json:"epsEstimate,omitempty"`
    25  	// EPS actual.
    26  	EpsActual float32 `json:"epsActual,omitempty"`
    27  	// Revenue estimate.
    28  	RevenueEstimate int64 `json:"revenueEstimate,omitempty"`
    29  	// Revenue actual.
    30  	RevenueActual int64 `json:"revenueActual,omitempty"`
    31  }