github.com/Finnhub-Stock-API/finnhub-go@v1.2.1/model_stock.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  // Stock struct for Stock
    12  type Stock struct {
    13  	// Symbol description
    14  	Description string `json:"description,omitempty"`
    15  	// Display symbol name.
    16  	DisplaySymbol string `json:"displaySymbol,omitempty"`
    17  	// Unique symbol used to identify this symbol used in <code>/stock/candle</code> endpoint.
    18  	Symbol string `json:"symbol,omitempty"`
    19  	// Security type.
    20  	Type string `json:"type,omitempty"`
    21  	// Price's currency. This might be different from the reporting currency of fundamental data.
    22  	Currency string `json:"currency,omitempty"`
    23  }