github.com/Finnhub-Stock-API/finnhub-go@v1.2.1/model_ipo_event.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  // IpoEvent struct for IpoEvent
    12  type IpoEvent struct {
    13  	// Symbol.
    14  	Symbol string `json:"symbol,omitempty"`
    15  	// IPO date.
    16  	Date string `json:"date,omitempty"`
    17  	// Exchange.
    18  	Exchange string `json:"exchange,omitempty"`
    19  	// Company's name.
    20  	Name string `json:"name,omitempty"`
    21  	// IPO status. Can take 1 of the following values: <code>expected</code>,<code>priced</code>,<code>withdrawn</code>,<code>filed</code>
    22  	Status string `json:"status,omitempty"`
    23  	// Projected price or price range.
    24  	Price string `json:"price,omitempty"`
    25  	// Number of shares offered during the IPO.
    26  	NumberOfShares int64 `json:"numberOfShares,omitempty"`
    27  	// Total shares value.
    28  	TotalSharesValue int64 `json:"totalSharesValue,omitempty"`
    29  }