Show / Hide Table of Contents

Class News

Inheritance
object
News
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Namespace: tt_net_sdk
Assembly: tt-net-api.dll
Syntax
public class News

Properties

Headline

News headline.

Declaration
public string Headline { get; }
Property Value
Type Description
string

Instruments

Instruments optionally provided in the news event

Declaration
public List<string> Instruments { get; }
Property Value
Type Description
List<string>

MarketId

Market that triggered the news event.

Declaration
public MarketId MarketId { get; }
Property Value
Type Description
MarketId

Message

Text of the news event.

Declaration
public string Message { get; }
Property Value
Type Description
string

Timestamp

Time the new event was sent.

Declaration
public ulong Timestamp { get; }
Property Value
Type Description
ulong

Urgency

Urgency of the message. If not provided by the exchange, will be set to normal.

Declaration
public Urgency Urgency { get; }
Property Value
Type Description
Urgency

Methods

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()
In this article
Back to top