github.com/Finnhub-Stock-API/finnhub-go@v1.2.1/model_stock_transcripts.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  import (
    12  	"time"
    13  )
    14  // StockTranscripts struct for StockTranscripts
    15  type StockTranscripts struct {
    16  	// Transcript's ID used to get the <a href=\"#transcripts\">full transcript</a>.
    17  	Id string `json:"id,omitempty"`
    18  	// Title.
    19  	Title string `json:"title,omitempty"`
    20  	// Time of the event.
    21  	Time time.Time `json:"time,omitempty"`
    22  	// Year of earnings result in the case of earnings call transcript.
    23  	Year int64 `json:"year,omitempty"`
    24  	// Quarter of earnings result in the case of earnings call transcript.
    25  	Quarter int64 `json:"quarter,omitempty"`
    26  }