github.com/Finnhub-Stock-API/finnhub-go@v1.2.1/model_earnings_call_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  // EarningsCallTranscripts struct for EarningsCallTranscripts
    15  type EarningsCallTranscripts struct {
    16  	// Company symbol.
    17  	Symbol string `json:"symbol,omitempty"`
    18  	// Transcript content.
    19  	Transcript []map[string]interface{} `json:"transcript,omitempty"`
    20  	// Participant list
    21  	Participant []map[string]interface{} `json:"participant,omitempty"`
    22  	// Audio link.
    23  	Audio string `json:"audio,omitempty"`
    24  	// Transcript's ID.
    25  	Id string `json:"id,omitempty"`
    26  	// Title.
    27  	Title string `json:"title,omitempty"`
    28  	// Time of the event.
    29  	Time time.Time `json:"time,omitempty"`
    30  	// Year of earnings result in the case of earnings call transcript.
    31  	Year int64 `json:"year,omitempty"`
    32  	// Quarter of earnings result in the case of earnings call transcript.
    33  	Quarter int64 `json:"quarter,omitempty"`
    34  }