Show / Hide Table of Contents

Interface INewsArticle

Encapsulates the basic news article information from Alpaca APIs.

Namespace: Alpaca.Markets
Assembly: Alpaca.Markets.dll
Syntax
public interface INewsArticle

Properties

| Improve this Doc View Source

ArticleUrl

Gets URL of article (if applicable).

Declaration
Uri? ArticleUrl { get; }
Property Value
Type Description
System.Nullable<Uri>
| Improve this Doc View Source

Author

Gets original author of news article.

Declaration
String Author { get; }
Property Value
Type Description
String
| Improve this Doc View Source

Content

Gets content of the news article (might contain HTML).

Declaration
String Content { get; }
Property Value
Type Description
String
| Improve this Doc View Source

CreatedAtUtc

Gets news article creation timestamp in UTC.

Declaration
DateTime CreatedAtUtc { get; }
Property Value
Type Description
DateTime
| Improve this Doc View Source

Headline

Gets headline or title of the article.

Declaration
String Headline { get; }
Property Value
Type Description
String
| Improve this Doc View Source

Id

Gets news article unique identifier.

Declaration
Int64 Id { get; }
Property Value
Type Description
Int64
| Improve this Doc View Source

LargeImageUrl

Gets the large image URL for the news article.

Declaration
Uri? LargeImageUrl { get; }
Property Value
Type Description
System.Nullable<Uri>
| Improve this Doc View Source

SmallImageUrl

Gets the small image URL for the news article.

Declaration
Uri? SmallImageUrl { get; }
Property Value
Type Description
System.Nullable<Uri>
| Improve this Doc View Source

Source

Gets source where the news originated from.

Declaration
String Source { get; }
Property Value
Type Description
String
| Improve this Doc View Source

Summary

Gets summary text for the article (may be first sentence of content).

Declaration
String Summary { get; }
Property Value
Type Description
String
| Improve this Doc View Source

Symbols

Gets list of related or mentioned symbols.

Declaration
IReadOnlyList<String> Symbols { get; }
Property Value
Type Description
IReadOnlyList<String>
| Improve this Doc View Source

ThumbImageUrl

Gets the thumbnail image URL for the news article.

Declaration
Uri? ThumbImageUrl { get; }
Property Value
Type Description
System.Nullable<Uri>
| Improve this Doc View Source

UpdatedAtUtc

Gets news article updating timestamp in UTC.

Declaration
DateTime UpdatedAtUtc { get; }
Property Value
Type Description
DateTime
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX