github.com/Finnhub-Stock-API/finnhub-go@v1.2.1/model_dividends.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  // Dividends struct for Dividends
    12  type Dividends struct {
    13  	// Symbol.
    14  	Symbol string `json:"symbol,omitempty"`
    15  	// Ex-Dividend date.
    16  	Date string `json:"date,omitempty"`
    17  	// Amount in local currency.
    18  	Amount float32 `json:"amount,omitempty"`
    19  	// Adjusted dividend.
    20  	AdjustedAmount float32 `json:"adjustedAmount,omitempty"`
    21  	// Pay date.
    22  	PayDate string `json:"payDate,omitempty"`
    23  	// Record date.
    24  	RecordDate string `json:"recordDate,omitempty"`
    25  	// Declaration date.
    26  	DeclarationDate string `json:"declarationDate,omitempty"`
    27  	// Currency.
    28  	Currency string `json:"currency,omitempty"`
    29  }