github.com/Finnhub-Stock-API/finnhub-go@v1.2.1/model_investor.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  // Investor struct for Investor
    12  type Investor struct {
    13  	// Investor's name.
    14  	Name string `json:"name,omitempty"`
    15  	// Number of shares held by the investor.
    16  	Share int64 `json:"share,omitempty"`
    17  	// Number of share changed (net buy or sell) from the last period.
    18  	Change int64 `json:"change,omitempty"`
    19  	// Filing date.
    20  	FilingDate string `json:"filingDate,omitempty"`
    21  }