Show / Hide Table of Contents

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 Source

Items

Gets list of items for this response grouped by asset symbols.

Declaration
IReadOnlyDictionary<String, TItem> Items { get; }
Property Value
Type Description
IReadOnlyDictionary<String, TItem>
| Improve this Doc View Source

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>
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX