github.com/Finnhub-Stock-API/finnhub-go@v1.2.1/model_last_bid_ask.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  // LastBidAsk struct for LastBidAsk
    12  type LastBidAsk struct {
    13  	// Bid price.
    14  	B float32 `json:"b,omitempty"`
    15  	// Ask price.
    16  	A float32 `json:"a,omitempty"`
    17  	// Bid volume.
    18  	Bv float32 `json:"bv,omitempty"`
    19  	// Ask volume.
    20  	Av float32 `json:"av,omitempty"`
    21  	// Reference UNIX timestamp in ms.
    22  	T int64 `json:"t,omitempty"`
    23  }