github.com/Finnhub-Stock-API/finnhub-go@v1.2.1/model_tick_data.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  // TickData struct for TickData
    12  type TickData struct {
    13  	// Symbol.
    14  	S string `json:"s,omitempty"`
    15  	// Number of ticks skipped.
    16  	Skip int64 `json:"skip,omitempty"`
    17  	// Number of ticks returned. If <code>count</code> < <code>limit</code>, all data for that date has been returned.
    18  	Count int64 `json:"count,omitempty"`
    19  	// Total number of ticks for that date.
    20  	Total int64 `json:"total,omitempty"`
    21  	// List of volume data.
    22  	V []float32 `json:"v,omitempty"`
    23  	// List of price data.
    24  	P []float32 `json:"p,omitempty"`
    25  	// List of timestamp in UNIX ms.
    26  	T []int64 `json:"t,omitempty"`
    27  	// List of venues/exchanges.
    28  	X []string `json:"x,omitempty"`
    29  }