Interface IDictionaryPage<TItem>
Encapsulates single page response in Alpaca Data API v2.
Namespace: Alpaca.Markets
Assembly: Alpaca.Markets.dll
Syntax
public interface IDictionaryPage<TItem>
Type Parameters
Name | Description |
---|---|
TItem | Type of paged item (bar, trade or quote) |
Properties
| Improve this Doc View SourceItems
Gets list of items for this response grouped by asset symbols.
Declaration
IReadOnlyDictionary<String, TItem> Items { get; }
Property Value
Type | Description |
---|---|
IReadOnlyDictionary<String, TItem> |
NextPageToken
Gets the next page token for continuation. If value of this property
equals to null
this page is the last one and no more data is available.
Declaration
String? NextPageToken { get; }
Property Value
Type | Description |
---|---|
System.Nullable<String> |