Interface IPage<TItems>
Encapsulates single page response in Alpaca Data API v2.
Namespace: Alpaca.Markets
Assembly: Alpaca.Markets.dll
Syntax
public interface IPage<out TItems>Type Parameters
| Name | Description | 
|---|---|
| TItems | Type of paged item (bar, trade or quote) | 
Properties
| Improve this Doc View SourceItems
Gets list of items for this response.
Declaration
IReadOnlyList<TItems> Items { get; }Property Value
| Type | Description | 
|---|---|
| IReadOnlyList<TItems> | 
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> | 
Symbol
Gets the asset symbol for all items on page.
Declaration
String Symbol { get; }Property Value
| Type | Description | 
|---|---|
| String |