FutureStock
Representation of a Future Stock FutureStock
export interface FutureStock {
'date'?: string;
'formattedDate'?: string;
'stock'?: Stock;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
date | Optional | string | Date of future stock {string} FutureStock |
formattedDate | Optional | string | Date of future stock expressed in text value {string} FutureStock |
stock | Optional | Stock | {Stock} FutureStock |