Class Dividends
- Namespace
- Tudormobile.AlphaVantage.Entities
- Assembly
- Tudormobile.AlphaVantageAPI.dll
Represents a collection of dividend payment records for a specific stock symbol.
public class Dividends : IEntity
- Inheritance
-
Dividends
- Implements
- Inherited Members
Remarks
This class contains historical dividend data retrieved from the Alpha Vantage API, including all dividend payments for a given security over time.
Constructors
Dividends()
public Dividends()
Properties
Data
Gets or sets the collection of individual dividend payment records.
public List<Dividend> Data { get; set; }
Property Value
- List<Dividend>
A list of Dividend objects, each representing a single dividend payment event. The list is ordered chronologically by the dividend payment dates.
Symbol
Gets or sets the stock symbol or ticker for which dividend data is provided.
public string Symbol { get; set; }
Property Value
- string
The stock symbol (e.g., "AAPL", "MSFT") that uniquely identifies the security.